<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Just Maniak</title>
    <description>The latest articles on DEV Community by Just Maniak (@justmaniak).</description>
    <link>https://dev.to/justmaniak</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3731540%2F7bbdcfea-62b6-493f-b05d-73ebfac5449b.png</url>
      <title>DEV Community: Just Maniak</title>
      <link>https://dev.to/justmaniak</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/justmaniak"/>
    <language>en</language>
    <item>
      <title>[Boost]</title>
      <dc:creator>Just Maniak</dc:creator>
      <pubDate>Sun, 25 Jan 2026 15:04:59 +0000</pubDate>
      <link>https://dev.to/justmaniak/-59ag</link>
      <guid>https://dev.to/justmaniak/-59ag</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/justmaniak" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3731540%2F7bbdcfea-62b6-493f-b05d-73ebfac5449b.png" alt="justmaniak"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/justmaniak/i-spent-a-year-cracking-paid-python-scripts-so-i-built-an-obfuscator-that-actually-works-4j02" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;I spent a year+ cracking paid Python scripts, so I built an obfuscator that actually works&lt;/h2&gt;
      &lt;h3&gt;Just Maniak ・ Jan 25&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#programming&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#python&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#obfuscate&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#beginners&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>programming</category>
      <category>python</category>
      <category>obfuscate</category>
      <category>beginners</category>
    </item>
    <item>
      <title>I spent a year+ cracking paid Python scripts, so I built an obfuscator that actually works</title>
      <dc:creator>Just Maniak</dc:creator>
      <pubDate>Sun, 25 Jan 2026 15:02:44 +0000</pubDate>
      <link>https://dev.to/justmaniak/i-spent-a-year-cracking-paid-python-scripts-so-i-built-an-obfuscator-that-actually-works-4j02</link>
      <guid>https://dev.to/justmaniak/i-spent-a-year-cracking-paid-python-scripts-so-i-built-an-obfuscator-that-actually-works-4j02</guid>
      <description>&lt;p&gt;so about a year and a half ago i got bored and started learning python RE. &lt;br&gt;
like actually learning it, going through decompilers, understanding bytecode, &lt;br&gt;
the whole thing.&lt;/p&gt;

&lt;p&gt;but here's the thing that really sent me down the rabbit hole: my friend kept &lt;br&gt;
sending me paid python scripts he'd bought. cheap/expensive ones. scripts people &lt;br&gt;
were actually paying for.&lt;/p&gt;

&lt;p&gt;and i just... cracked them. all of them.&lt;/p&gt;

&lt;p&gt;like genuinely every single paid script he sent me, i could break through the &lt;br&gt;
obfuscation/security it had in minutes.&lt;/p&gt;

&lt;p&gt;and that's when i realized: the obfuscators protecting these aren't actually &lt;br&gt;
protecting anything.&lt;/p&gt;

&lt;p&gt;the reality:&lt;/p&gt;

&lt;p&gt;i'm talking scripts that cost $5-50+ monthly. scripts with/without obfuscation built in. &lt;br&gt;
scripts that were supposed to be "secure" or "uncrackable" or whatever.&lt;/p&gt;

&lt;p&gt;none of them were.&lt;/p&gt;

&lt;p&gt;because the obfuscation they used was just... bad. like really bad.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;they were just renaming variables and encoding strings&lt;/li&gt;
&lt;li&gt;decompilers don't care about variable names&lt;/li&gt;
&lt;li&gt;string encoding is trivial to reverse&lt;/li&gt;
&lt;li&gt;most of them you could just pylingual and read the logic in minutes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;so i'm sitting there looking at all these paid scripts that i was able to &lt;br&gt;
completely reverse engineer, and i'm thinking: "how is this even possible?"&lt;/p&gt;

&lt;p&gt;like people are paying money monthly for these scripts and anyone can break them in &lt;br&gt;
5 minutes?&lt;/p&gt;

&lt;p&gt;that's when i asked the real questions:&lt;/p&gt;

&lt;p&gt;if the obfuscation is this weak on paid scripts, what's the obfuscator doing?&lt;/p&gt;

&lt;p&gt;how bad must the obfuscation market be if people are selling protected scripts &lt;br&gt;
with this level of protection?&lt;/p&gt;

&lt;p&gt;and most importantly: what would real protection actually look like?&lt;/p&gt;

&lt;p&gt;so i spent a year researching python security and obfuscation.&lt;/p&gt;

&lt;p&gt;because if i can break paid scripts that are supposed to be protected, then &lt;br&gt;
the obfuscators everyone's using are fundamentally broken.&lt;/p&gt;

&lt;p&gt;what i learned:&lt;/p&gt;

&lt;p&gt;most obfuscators are made by people who understand code but don't understand &lt;br&gt;
attacks.&lt;/p&gt;

&lt;p&gt;they use static obfuscation so signature detection works. once you break one &lt;br&gt;
copy, every copy is broken.&lt;/p&gt;

&lt;p&gt;they don't use polymorphism. they don't encrypt the bytecode. they don't think &lt;br&gt;
about actual defense in depth.&lt;/p&gt;

&lt;p&gt;the market is broken.&lt;/p&gt;

&lt;p&gt;so i built nyami:&lt;/p&gt;

&lt;p&gt;because if i can break paid scripts protected with current obfuscators, then &lt;br&gt;
developers need real protection.&lt;br&gt;
full feature list @ &lt;a href="https://nyami.cc/features" rel="noopener noreferrer"&gt;https://nyami.cc/features&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;the 4 core features:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Python To C (PYTOC)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;literally converts your python to C, then compiles it to machine code&lt;/li&gt;
&lt;li&gt;your python source code basically doesn't exist anymore&lt;/li&gt;
&lt;li&gt;still deploys as one .py file like normal&lt;/li&gt;
&lt;li&gt;best one imo&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bytecode Encryption&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;encrypts the actual compiled bytecode&lt;/li&gt;
&lt;li&gt;and the keys are polymorphic so every build is different&lt;/li&gt;
&lt;li&gt;decompilers literally cannot read encrypted bytecode&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Decompiler Breaker&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;i spent time understanding how pycdc, pylingual, uncompyle6 actually work&lt;/li&gt;
&lt;li&gt;the tools that broke every paid script i tested&lt;/li&gt;
&lt;li&gt;then built stuff specifically to break them&lt;/li&gt;
&lt;li&gt;and it's different every build so signatures don't work&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Polymorphic Obfuscator&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;every build is unique&lt;/li&gt;
&lt;li&gt;v1.0 and v1.1 look different even though they do the same thing&lt;/li&gt;
&lt;li&gt;this is why paid scripts fail, they use the same obfuscation pattern which if broken once, its over&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;real talk:&lt;/p&gt;

&lt;p&gt;obfuscation isn't magic. if someone dedicates serious time they can probably &lt;br&gt;
still reverse your code. but that's not the point.&lt;/p&gt;

&lt;p&gt;right now if you sell a python script protected with basic obfuscation, i can &lt;br&gt;
probably crack it in minutes. with nyami it would take weeks of serious work, which at that point&lt;br&gt;
most give up on even trying, because lets be real most of the times is not that important.&lt;/p&gt;

&lt;p&gt;that's the difference that matters.&lt;/p&gt;

&lt;p&gt;pricing:&lt;/p&gt;

&lt;p&gt;€1 per token if you want to just test it out. €20/month if you're actually &lt;br&gt;
protecting production code or selling scripts.&lt;/p&gt;

&lt;p&gt;i didn't want to gatekeep this. if i could break paid scripts, small devs &lt;br&gt;
should have access to something that actually works.&lt;/p&gt;

&lt;p&gt;link: nyami.cc&lt;br&gt;
you can also find nyami on discord @ &lt;a href="https://discord.nyami.cc" rel="noopener noreferrer"&gt;https://discord.nyami.cc&lt;/a&gt;&lt;br&gt;
and if you want to read documentation is @ &lt;a href="https://documentation.nyami.cc" rel="noopener noreferrer"&gt;https://documentation.nyami.cc&lt;/a&gt;&lt;br&gt;
if you want to try deobfuscating one of our files we offer test files on discord&lt;br&gt;
after almost every update, we also have the same file posted open-source on there&lt;/p&gt;

&lt;p&gt;honestly just tired of seeing people trust broken tools so i built something &lt;br&gt;
better.&lt;/p&gt;

&lt;p&gt;happy to answer questions if anyone's curious about the technical stuff or &lt;br&gt;
python security in general. or if you want to tell me why i'm wrong lol&lt;/p&gt;

</description>
      <category>programming</category>
      <category>python</category>
      <category>obfuscate</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
