<?xml version="1.0" encoding="utf-8" ?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:tt="http://teletype.in/" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/"><title>@leon0399</title><author><name>@leon0399</name></author><id>https://teletype.in/atom/leon0399</id><link rel="self" type="application/atom+xml" href="https://teletype.in/atom/leon0399?offset=0"></link><link rel="alternate" type="text/html" href="https://teletype.in/@leon0399?utm_source=teletype&amp;utm_medium=feed_atom&amp;utm_campaign=leon0399"></link><link rel="next" type="application/rss+xml" href="https://teletype.in/atom/leon0399?offset=10"></link><link rel="search" type="application/opensearchdescription+xml" title="Teletype" href="https://teletype.in/opensearch.xml"></link><updated>2026-08-12T19:23:04.566Z</updated><entry><id>leon0399:slntlss-devs-subject</id><link rel="alternate" type="text/html" href="https://teletype.in/@leon0399/slntlss-devs-subject?utm_source=teletype&amp;utm_medium=feed_atom&amp;utm_campaign=leon0399"></link><title>Silentless-X Devs Riddle</title><published>2022-05-29T20:35:24.686Z</published><updated>2022-05-29T20:35:24.686Z</updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img3.teletype.in/files/69/ba/69ba79b2-3d24-47cb-abfe-b7bf615fe46f.png"></media:thumbnail><summary type="html">&lt;img src=&quot;https://img1.teletype.in/files/41/fa/41fa0b2d-d660-4506-97f5-3b3163d375f7.png&quot;&gt;For a context, I do have and education in cybersecurity, so I had some expertise beforehand 🙃</summary><content type="html">
  &lt;blockquote id=&quot;ru08&quot;&gt;For a context, I do have and education in cybersecurity, so I had some expertise beforehand 🙃&lt;/blockquote&gt;
  &lt;p id=&quot;ORO6&quot;&gt;It&amp;#x27;s all started as with given Discord message my Hertz:&lt;/p&gt;
  &lt;figure id=&quot;WB5S&quot; class=&quot;m_column&quot;&gt;
    &lt;img src=&quot;https://img1.teletype.in/files/41/fa/41fa0b2d-d660-4506-97f5-3b3163d375f7.png&quot; width=&quot;1362&quot; /&gt;
  &lt;/figure&gt;
  &lt;h2 id=&quot;QtBP&quot;&gt;1. Binary message&lt;/h2&gt;
  &lt;p id=&quot;NJUw&quot;&gt;Clearly this message is a some binary sequence. No fancy tools required, I used first tool, that showed up for &amp;quot;binary to text&amp;quot; - &lt;a href=&quot;https://www.rapidtables.com/convert/number/binary-to-ascii.html&quot; target=&quot;_blank&quot;&gt;https://www.rapidtables.com/convert/number/binary-to-ascii.html&lt;/a&gt;&lt;/p&gt;
  &lt;figure id=&quot;4wvo&quot; class=&quot;m_original&quot;&gt;
    &lt;img src=&quot;https://img3.teletype.in/files/6b/e7/6be78843-8d97-4956-aea1-9581ecb15dd2.png&quot; width=&quot;874&quot; /&gt;
    &lt;figcaption&gt;First Google result&lt;/figcaption&gt;
  &lt;/figure&gt;
  &lt;p id=&quot;dKpZ&quot;&gt;Decoding given message returned into following: &lt;/p&gt;
  &lt;pre id=&quot;9anm&quot;&gt;-----BEGIN PGP MESSAGE-----

jA0EBwMCwpGitVUGxZ/K0mMB9wJdi2MmHZt9zIk9O/CLZGUsvRFNejeeQqAn5E2Y
VSjA/vOFavyN8KwMpv4kxs59zFRaK4Yju882KSG0muJY4np3mrBHltnxT1CwC38F
d8B8Tb81FbI2Z1u/LjmSRvvY3Q8=
=7yMK
-----END PGP MESSAGE-----&lt;/pre&gt;
  &lt;h2 id=&quot;6cLU&quot;&gt;2. PGP message decoding&lt;/h2&gt;
  &lt;h3 id=&quot;1tif&quot;&gt;Some theory&lt;/h3&gt;
  &lt;p id=&quot;b4BM&quot;&gt;Decoding PGP message may be confusing, because quick googling for &amp;quot;decrypt pgp message&amp;quot; results into fact, that you need some kind of &lt;em&gt;private key&lt;/em&gt; and &lt;em&gt;passphrase&lt;/em&gt;. That is not completely true, because PGP is just a software, that used to create such message&lt;/p&gt;
  &lt;blockquote id=&quot;oC1m&quot;&gt;PGP (Pretty Good Privacy) is an encryption program that provides cryptographic privacy and authentication for data communication. PGP is used for signing, encrypting, and decrypting texts, e-mails, files, directories, and whole disk partitions and to increase the security of e-mail communications.&lt;/blockquote&gt;
  &lt;p id=&quot;F5mJ&quot;&gt;And being a capable program, it allows to use multiple &lt;em&gt;ciphers&lt;/em&gt;. &lt;/p&gt;
  &lt;blockquote id=&quot;UqiA&quot;&gt;There are to main &amp;quot;categories&amp;quot; of ciphers: Symmetric and asymmetric. &lt;br /&gt;&lt;strong&gt;Symmetric cipher &lt;/strong&gt;uses same password for encrypting and decrypting message. Think of it as standard Web2 password combination, anyone who got it has access to your account&lt;br /&gt;&lt;strong&gt;Asymmetric ciphers&lt;/strong&gt; on the other hand uses so-called public and private keypair together with passphrase. These pairs mathematically paired with each other, so only one public key is paired and represents exact single private key. You can share your public key without worries to other people, so they cat know, that it was you, who encrypted some message. In fact, this is what used it blockchain, your address - is your public key, and your private key is, huh, your private key. &lt;/blockquote&gt;
  &lt;h3 id=&quot;qjUZ&quot;&gt;Tackling message decryption&lt;/h3&gt;
  &lt;p id=&quot;a0vW&quot;&gt;To decrypt this message, I used software, called &lt;code&gt;gpg2&lt;/code&gt;. It is a free and open-sourced version of PGP software, mentioned above, commonly used in Linux and Ubuntu distributions&lt;/p&gt;
  &lt;figure id=&quot;TpoX&quot; class=&quot;m_original&quot;&gt;
    &lt;img src=&quot;https://img3.teletype.in/files/2f/1b/2f1bc0b7-5ec0-476d-8d6f-dc5c3604c093.png&quot; width=&quot;1233&quot; /&gt;
    &lt;figcaption&gt;To decrypt your message, simply type it after calling &amp;#x60;gpg&amp;#x60; command&lt;/figcaption&gt;
  &lt;/figure&gt;
  &lt;p id=&quot;j5Fr&quot;&gt;I tried to use multiple passwords, such as &lt;code&gt;Silentless-X&lt;/code&gt;, &lt;code&gt;Enigma-77&lt;/code&gt;, &lt;code&gt;Silentless&lt;/code&gt;, &lt;code&gt;Enigma&lt;/code&gt;, &lt;code&gt;treasure&lt;/code&gt;, etc., but no luck there. &lt;/p&gt;
  &lt;p id=&quot;9Rlr&quot;&gt;As I am (in fact) very-very-veeeeryyyy lazy, I decided to use other tactic. First attempt decrypting this message hints us, that it is am AES encrypted message. And you know what? It is an symmetric cipher and can bruteforced! All this because I am too lazy to guess the password&lt;/p&gt;
  &lt;h3 id=&quot;ZS1c&quot;&gt;Bruteforcing with my friend John&lt;/h3&gt;
  &lt;p id=&quot;IZDs&quot;&gt;Such happened, that I know exact software to use in my case - &lt;a href=&quot;https://github.com/openwall/john&quot; target=&quot;_blank&quot;&gt;John the Ripper&lt;/a&gt;. It is very capable software, commonly used to bruteforce different ciphers and hashes. &lt;/p&gt;
  &lt;blockquote id=&quot;gLgM&quot;&gt;John the Ripper runs thousands of different passwords per second trying to guess the right password&lt;/blockquote&gt;
  &lt;p id=&quot;eJtf&quot;&gt;Said, I am not an expert at using John, I asked Google for help. Quick googling for &amp;quot;john the ripper gpg aes&amp;quot; giving us the following article - &lt;a href=&quot;https://www.openwall.com/lists/john-users/2015/11/17/1&quot; target=&quot;_blank&quot;&gt;https://www.openwall.com/lists/john-users/2015/11/17/1&lt;/a&gt;&lt;/p&gt;
  &lt;p id=&quot;3fnD&quot;&gt;So I did all the stuff, needed to run my bruteforcer, and here it is - password was &lt;code&gt;77&lt;/code&gt; all that time, and I could&amp;#x27;ve easily guessed it!&lt;/p&gt;
  &lt;figure id=&quot;aN6o&quot; class=&quot;m_original&quot;&gt;
    &lt;img src=&quot;https://cdn.discordapp.com/attachments/967883007929253968/977661462162046976/unknown.png&quot; width=&quot;1799&quot; /&gt;
    &lt;figcaption&gt;There was no need to run my production server for this...&lt;/figcaption&gt;
  &lt;/figure&gt;
  &lt;h2 id=&quot;Eiwf&quot;&gt;3. Caesar, but not a salad&lt;/h2&gt;
  &lt;p id=&quot;mDiO&quot;&gt;Finally decrypting PGP message with correct passwords giving us the weird combination of symbols: &lt;code&gt;AwHPgFMgnIUdn4a9uKGFDjxTHcgk5d4bKNjsl4395gC8OM&lt;/code&gt;&lt;/p&gt;
  &lt;figure id=&quot;NP7T&quot; class=&quot;m_original&quot;&gt;
    &lt;img src=&quot;https://img1.teletype.in/files/08/16/081612fc-740a-4a4d-a5d2-b3d09f01348c.png&quot; width=&quot;1233&quot; /&gt;
    &lt;figcaption&gt;Correctly decrypted message&lt;/figcaption&gt;
  &lt;/figure&gt;
  &lt;p id=&quot;8g9D&quot;&gt;Thanks, Hertz, for hints in his Discord announcement, I knew before even acquiring this gibberish, that the easiest of all ciphers will be used in this riddle - Caesar cipher.&lt;/p&gt;
  &lt;blockquote id=&quot;Ij9w&quot;&gt;Caesar shift, is one of the simplest and most widely known encryption techniques. It is a type of substitution cipher in which each letter in the plaintext is replaced by a letter some fixed number of positions down the alphabet. For example, with a left shift of 3, D would be replaced by A, E would become B, and so on.&lt;/blockquote&gt;
  &lt;p id=&quot;Oip0&quot;&gt;Once again, I used first tool, that showed up in google for &amp;quot;caesar cipher online&amp;quot; and now we have... another gibberish: &lt;code&gt;QmXFwVCwdYKtd4q9kAWVTznJXswa5t4rADzib4395wS8EC&lt;/code&gt;&lt;/p&gt;
  &lt;figure id=&quot;6qNk&quot; class=&quot;m_original&quot;&gt;
    &lt;img src=&quot;https://img2.teletype.in/files/9e/c0/9ec05de4-ec32-465f-b1f6-8451b42f0f13.png&quot; width=&quot;1903&quot; /&gt;
    &lt;figcaption&gt;Even Caesar was stubbed 23 times, I stabbed this cipher only once! &lt;/figcaption&gt;
  &lt;/figure&gt;
  &lt;h2 id=&quot;hplO&quot;&gt;4. IPFS and HTML&lt;/h2&gt;
  &lt;h3 id=&quot;alWY&quot;&gt;IPFS&lt;/h3&gt;
  &lt;p id=&quot;cYDa&quot;&gt;Once again, thanks Hertz, I&amp;#x27;ve seen this thing already, when X-Map was discovered, so I just typed into my Brave Browser &lt;code&gt;ipfs://QmXFwVCwdYKtd4q9kAWVTznJXswa5t4rADzib4395wS8EC&lt;/code&gt;and was presented by link to GitHub repository - &lt;a href=&quot;https://github.com/yyyhertz/Subject-Devs&quot; target=&quot;_blank&quot;&gt;https://github.com/yyyhertz/Subject-Devs&lt;/a&gt;&lt;/p&gt;
  &lt;h3 id=&quot;ii5x&quot;&gt;HTML&lt;/h3&gt;
  &lt;p id=&quot;W23F&quot;&gt;Opening GitHub repo resulted in HTML project, and I was asked to run it on my local server. &lt;em&gt;But I am a developer, I can interprete HTML in head&lt;/em&gt;! &lt;br /&gt;And after a quick code read, I got asked to open a discord ticked and tell what I did there!&lt;/p&gt;
  &lt;h2 id=&quot;olTV&quot;&gt;Post Scriptum&lt;/h2&gt;
  &lt;p id=&quot;mQbR&quot;&gt;Don&amp;#x27;t be afraid not knowing something, look at this as an opportunity to learn something new!&lt;/p&gt;

</content></entry></feed>