{"id":2388,"date":"2025-07-15T15:53:04","date_gmt":"2025-07-15T15:53:04","guid":{"rendered":"https:\/\/ttalesinteractive.com\/?page_id=2388"},"modified":"2025-08-16T12:48:09","modified_gmt":"2025-08-16T12:48:09","slug":"k4-is-solved","status":"publish","type":"page","link":"https:\/\/ttalesinteractive.com\/?page_id=2388","title":{"rendered":"Kryptos &#8211; K4 Is Cracked"},"content":{"rendered":"\n<p>Kind of. Okay look, \u2018K4 is finished\u2019 sounds much better than &#8216;we&#8217;re decades in and finally have a crib uncovered&#8217;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What was uncovered:<\/h3>\n\n\n\n<p>&gt; How K1 password was derived using the morse code<\/p>\n\n\n\n<p>&gt; How K2 password was derived using K1 [which reinforced what we already know about K2 and K3 working together]<\/p>\n\n\n\n<p>&gt; K3 was solved using information from K2 and a clue from the morse code [we knew this already it just confirmed that all puzzles are self referential]<\/p>\n\n\n\n<p>> K4 involves layering everything we&#8217;ve seen before: section, quagIII, movement,<\/p>\n\n\n\n<p>&gt; Jim was wrong, this is solvable with AI, and it can be brute forced but neither happen without context<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How I figured it out: <\/h3>\n\n\n\n<p>[You only need to tweak the solution to K1]<\/p>\n\n\n\n<p>YECRNGLYDKXVFGWFBTEHOYGPXFOJICJBLOFNICKXFKOVLVBBWOIGCZTJYDNDLGALCCHHZNOJRDKSVETCIASKMFNTBTQYLPTTPDOKMGXOVDYGHMVWXPMJDBGGKFPMHZSJUPLBLTLQILCDFVBQRDDEXEXGUKYDCIAWFQZLIHUHDLLABYWDYGHFSKCRET.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Github for verification:<\/h3>\n\n\n\n<p><a href=\"https:\/\/github.com\/ElodineOfficial\/KrackersAndCheese\">https:\/\/github.com\/ElodineOfficial\/KrackersAndCheese<\/a> &lt;Slider proves intended solutions behind K2 with an animation<\/p>\n\n\n\n<p><a href=\"https:\/\/ttalesinteractive.com\/?page_id=2404\">Click here for more information about K1+2 Password Recovery.<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/ElodineOfficial\/KryptosK4\">https:\/\/github.com\/ElodineOfficial\/KryptosK4<\/a> &lt; Solve for K4, up until step5 [anything past that is just theories for the final steps]<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Technical overview: <\/h3>\n\n\n\n<p>This is a technical text dump of how these scripts work and solve the first steps of K4.<\/p>\n\n\n\n<p>Raw K4: OBKR UOXOGHULBSOLIFBBWFLRVQQPRNGKSSO TWTQSJQSSEKZZWATJKLUDIAWINFBNYP VTTMZFPKWGDKZXTJCDIGKUHUAUEKCAR<\/p>\n\n\n\n<p>Here\u2019s a step\u2011by\u2011step recipe you can execute entirely by hand. Wherever you see \u201cletter\u2192number,\u201d use A\u202f=\u202f0, B\u202f=\u202f1, \u2026, Z\u202f=\u202f25, and whenever you \u201cmod\u202f26,\u201d if you get a negative result add 26, or if \u2265\u202f26 subtract 26.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Clean and split the raw K4 text<br>Strip out spaces so you have one 97\u2011letter string.<br>Remove the 49th character (the extra \u201cW\u201d in the exact center). You now have 96 letters. &gt;Reminder for later maths&lt;: This became our crosshair and axis, it did not necessarily get \u2018removed\u2019<br>Cut into four blocks of 24 letters, in reading order:<br>NW = letters 1\u201324<br>NE = letters 25\u201348<br>SW = letters 49\u201372<br>SE = letters 73\u201396<\/li>\n\n\n\n<li>First\u2010layer decryption of each quadrant<br>For each block (NW, NE, SW, SE), do:<br>Write it in a 4\u202frows\u202f\u00d7\u202f6\u202fcols grid, filling each row left\u2192right, top\u2192bottom.<br>Re\u2011label the columns by applying the quadrant\u2019s permutation. If perm\u202f=\u202f[p\u2080,p\u2081,\u2026,p\u2085], that means \u201cnew column\u202f0 is old column\u202fp\u2080,\u201d \u201cnew column\u202f1 is old\u202fp\u2081,\u201d etc.<br>Quadrant<br>Permutation<br>Caesar shift<br>Vigen\u00e8re key<br>NW<br>[1,\u202f3,\u202f4,\u202f0,\u202f2,\u202f5]<br>+\u202f1<br>KRYPTOS<br>NE<br>[2,\u202f0,\u202f1,\u202f5,\u202f3,\u202f4]<br>\u2212\u202f7\u202f(\u2261\u202f+\u202f19)<br>ABSCISSA<br>SW<br>[4,\u202f3,\u202f5,\u202f1,\u202f2,\u202f0]<br>+\u202f15<br>PALIMPSEST<br>SE<br>[3,\u202f1,\u202f2,\u202f4,\u202f0,\u202f5]<br>+\u202f8<br>PALIMPSEST<\/li>\n\n\n\n<li>Flatten the permuted grid back into one 24\u2011letter string (row by row).<br>Apply the Caesar shift to each letter: convert letter\u2192number, add the shift, mod\u202f26, convert back.<br>Vigen\u00e8re\u2011decrypt with the given key:<br>Repeat the key to length 24.<br>For each position i, compute (cipher\u1d62 \u2013 key\u1d62) mod\u202f26 \u2192 plaintext letter.<br>Record the resulting 24\u2011letter \u201cquadrant plaintext.\u201d<br>After this you\u2019ll have:<br>NW_pt = SBXASBXYEASTFUZLRRJSUSGU<br>NE_pt = JNREASTZDLTFBXUJLBFJDALS<br>SW_pt = LZYAMAFHKEASTFYBKQCVPIQA<br>SE_pt = WEDKGSSXZSQQEKQNWESTDIRR<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Where the we\u2019ve been going wrong [myself included]:<\/h3>\n\n\n\n<p>> Focused so hard on LATIN that we didn\u2019t realize there were english passcodes <\/p>\n\n\n\n<p>&gt; Focused so hard on K4 that the methodology behind K1 and K2 solutions were glossed by, afterall, they\u2019d been solved<\/p>\n\n\n\n<p>&gt; Not enough focus on the in puzzle clues, [with respect I\u2019ve seen some people try and tie in the bible or books outside of the quoted Carter Howard passage and that\u2019s just not going to go anywhere, this is a contextually heavy puzzle but it is all internal to itself and general cultural knowledge]<\/p>\n\n\n\n<p>&gt; Not enough focus on the access of information during the time, as Sanborn wasn\u2019t making this with internet popularity in mind. He was thinking about local libraries, internal clues, and perhaps even some pop culture osmosis. Pen and paper were always the focus of this solve.<\/p>\n\n\n\n<p>&gt; We assume corrections are corrections, instead of clues that\u2019ve been messed up so badly that the puzzle may be unsolved without correction [XIDBYROWS vs XLAYERTWO]. Sanborn has said this mixup was a highly unfortunate probability event. I can\u2019t stress enough how every little thing here is intentional even when it seems insignificant.&nbsp; But artist intention and perfection in execution are wholly different, we can\u2019t treat this as an infallible puzzle. This ended up being a hint to how the palimpsest in k4 functioned. So it was critical to correct, I do appreciate Sanborn doing that.<\/p>\n\n\n\n<p>On that note. Allow me to be the bad guy for a moment: the Kryptos community in general is composed of good faith actors, and that isn\u2019t always how decryption, hacking, or puzzle breaking happens. This is a social engineering problem, where Sanborn himself has to be considered as he has done so many self referential clues throughout his entire career [not uncommon, I do this too] and we see them begin to bleed through here as well. By having a better understanding of the personal knowledge base, we get a greater idea of what would\u2019ve made sense to use at the time as a first, second, or even obscure third option. The better you understand the man [ethical considerations aside] the easier this puzzle is to undo. K4 is being solved by being the bad guy. By being the hacker, the social engineer, and the goblin. So if you\u2019re going to solve the other half, grab your grey hat!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Where we&#8217;re at:<\/h3>\n\n\n\n<p>K4 is cracked. But there&#8217;s still a lot of good work to do. Science is about running tests, validation through more trials, and getting rid of junk data. This page has been edited multiple times in order to remove junk data and lucky numbers while preserving everything we can validate. <\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Kind of. Okay look, \u2018K4 is finished\u2019 sounds much better than &#8216;we&#8217;re decades in and finally have a crib uncovered&#8217; What was uncovered: &gt; How K1 password was derived using the morse code &gt; How K2 password was derived using K1 [which reinforced what we already know about K2 and K3 working together] &gt; K3 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2388","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Kryptos - K4 Is Cracked - Tenebrous Tales Interactive<\/title>\n<meta name=\"description\" content=\"Tenebrous Tales Interactive - Kryptos - K4 Is Cracked\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ttalesinteractive.com\/?page_id=2388\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Kryptos - K4 Is Cracked - Tenebrous Tales Interactive\" \/>\n<meta property=\"og:description\" content=\"Tenebrous Tales Interactive - Kryptos - K4 Is Cracked\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ttalesinteractive.com\/?page_id=2388\" \/>\n<meta property=\"og:site_name\" content=\"Tenebrous Tales Interactive\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-16T12:48:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ttalesinteractive.com\/wp-content\/uploads\/2023\/10\/dark_Tentacles_banner_4.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ttalesinteractive.com\\\/?page_id=2388\",\"url\":\"https:\\\/\\\/ttalesinteractive.com\\\/?page_id=2388\",\"name\":\"Kryptos - K4 Is Cracked - Tenebrous Tales Interactive\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ttalesinteractive.com\\\/#website\"},\"datePublished\":\"2025-07-15T15:53:04+00:00\",\"dateModified\":\"2025-08-16T12:48:09+00:00\",\"description\":\"Tenebrous Tales Interactive - Kryptos - K4 Is Cracked\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ttalesinteractive.com\\\/?page_id=2388#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ttalesinteractive.com\\\/?page_id=2388\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ttalesinteractive.com\\\/?page_id=2388#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/ttalesinteractive.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Kryptos &#8211; K4 Is Cracked\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ttalesinteractive.com\\\/#website\",\"url\":\"https:\\\/\\\/ttalesinteractive.com\\\/\",\"name\":\"Tenebrous Tales Interactive\",\"description\":\"Endless text adventures powered by AI.\",\"publisher\":{\"@id\":\"https:\\\/\\\/ttalesinteractive.com\\\/#organization\"},\"alternateName\":\"TTI\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ttalesinteractive.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/ttalesinteractive.com\\\/#organization\",\"name\":\"Tenebrous Tales Interactive\",\"alternateName\":\"TTI\",\"url\":\"https:\\\/\\\/ttalesinteractive.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ttalesinteractive.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/ttalesinteractive.com\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/imageedit_1_8078511714.png\",\"contentUrl\":\"https:\\\/\\\/ttalesinteractive.com\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/imageedit_1_8078511714.png\",\"width\":1026,\"height\":1026,\"caption\":\"Tenebrous Tales Interactive\"},\"image\":{\"@id\":\"https:\\\/\\\/ttalesinteractive.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Kryptos - K4 Is Cracked - Tenebrous Tales Interactive","description":"Tenebrous Tales Interactive - Kryptos - K4 Is Cracked","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:\/\/ttalesinteractive.com\/?page_id=2388","og_locale":"en_US","og_type":"article","og_title":"Kryptos - K4 Is Cracked - Tenebrous Tales Interactive","og_description":"Tenebrous Tales Interactive - Kryptos - K4 Is Cracked","og_url":"https:\/\/ttalesinteractive.com\/?page_id=2388","og_site_name":"Tenebrous Tales Interactive","article_modified_time":"2025-08-16T12:48:09+00:00","og_image":[{"width":960,"height":540,"url":"https:\/\/ttalesinteractive.com\/wp-content\/uploads\/2023\/10\/dark_Tentacles_banner_4.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/ttalesinteractive.com\/?page_id=2388","url":"https:\/\/ttalesinteractive.com\/?page_id=2388","name":"Kryptos - K4 Is Cracked - Tenebrous Tales Interactive","isPartOf":{"@id":"https:\/\/ttalesinteractive.com\/#website"},"datePublished":"2025-07-15T15:53:04+00:00","dateModified":"2025-08-16T12:48:09+00:00","description":"Tenebrous Tales Interactive - Kryptos - K4 Is Cracked","breadcrumb":{"@id":"https:\/\/ttalesinteractive.com\/?page_id=2388#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ttalesinteractive.com\/?page_id=2388"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/ttalesinteractive.com\/?page_id=2388#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ttalesinteractive.com\/"},{"@type":"ListItem","position":2,"name":"Kryptos &#8211; K4 Is Cracked"}]},{"@type":"WebSite","@id":"https:\/\/ttalesinteractive.com\/#website","url":"https:\/\/ttalesinteractive.com\/","name":"Tenebrous Tales Interactive","description":"Endless text adventures powered by AI.","publisher":{"@id":"https:\/\/ttalesinteractive.com\/#organization"},"alternateName":"TTI","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ttalesinteractive.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/ttalesinteractive.com\/#organization","name":"Tenebrous Tales Interactive","alternateName":"TTI","url":"https:\/\/ttalesinteractive.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ttalesinteractive.com\/#\/schema\/logo\/image\/","url":"https:\/\/ttalesinteractive.com\/wp-content\/uploads\/2023\/10\/imageedit_1_8078511714.png","contentUrl":"https:\/\/ttalesinteractive.com\/wp-content\/uploads\/2023\/10\/imageedit_1_8078511714.png","width":1026,"height":1026,"caption":"Tenebrous Tales Interactive"},"image":{"@id":"https:\/\/ttalesinteractive.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/ttalesinteractive.com\/index.php?rest_route=\/wp\/v2\/pages\/2388","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ttalesinteractive.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/ttalesinteractive.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/ttalesinteractive.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ttalesinteractive.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2388"}],"version-history":[{"count":18,"href":"https:\/\/ttalesinteractive.com\/index.php?rest_route=\/wp\/v2\/pages\/2388\/revisions"}],"predecessor-version":[{"id":2477,"href":"https:\/\/ttalesinteractive.com\/index.php?rest_route=\/wp\/v2\/pages\/2388\/revisions\/2477"}],"wp:attachment":[{"href":"https:\/\/ttalesinteractive.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2388"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}