<?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: Jojin John</title>
    <description>The latest articles on DEV Community by Jojin John (@jojin1709).</description>
    <link>https://dev.to/jojin1709</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4055189%2F6b1b20e0-f3d9-4bb0-bf04-280ea78e8505.jpg</url>
      <title>DEV Community: Jojin John</title>
      <link>https://dev.to/jojin1709</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jojin1709"/>
    <language>en</language>
    <item>
      <title>How I Built a Real-Time Windows RAM Optimizer in Rust &amp; Tauri v2</title>
      <dc:creator>Jojin John</dc:creator>
      <pubDate>Sat, 08 Aug 2026 06:41:31 +0000</pubDate>
      <link>https://dev.to/jojin1709/how-i-built-a-real-time-windows-ram-optimizer-in-rust-tauri-v2-b9p</link>
      <guid>https://dev.to/jojin1709/how-i-built-a-real-time-windows-ram-optimizer-in-rust-tauri-v2-b9p</guid>
      <description>&lt;p&gt;Many memory cleaner utilities on Windows rely on placebo tricks—forcing artificial allocation spikes that trigger Windows pageouts while causing heavy system stutter. &lt;/p&gt;

&lt;p&gt;To solve this, I built &lt;strong&gt;RAMGuard Pro&lt;/strong&gt;: a lightweight, high-performance desktop memory reclamation utility powered by &lt;strong&gt;Rust&lt;/strong&gt;, &lt;strong&gt;Tauri v2&lt;/strong&gt;, and &lt;strong&gt;React&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  🛠️ How It Works Under the Hood
&lt;/h2&gt;

&lt;p&gt;RAMGuard Pro bypasses placebos and interacts directly with native Windows NT kernel APIs:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Working-Set Trimming (&lt;code&gt;EmptyWorkingSet&lt;/code&gt;)
&lt;/h3&gt;

&lt;p&gt;The engine iterates over process handles and calls &lt;code&gt;EmptyWorkingSet&lt;/code&gt; via the Windows PSAPI library. This instructs the OS memory manager to trim unreferenced working-set pages safely into standby memory.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Standby Memory Purging (&lt;code&gt;NtSetSystemInformation&lt;/code&gt;)
&lt;/h3&gt;

&lt;p&gt;To purge standby memory caches (similar to Sysinternals RAMMap), RAMGuard Pro calls the undocumented but stable &lt;code&gt;NtSetSystemInformation&lt;/code&gt; kernel API:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Pass 1&lt;/strong&gt;: Executes &lt;code&gt;MemoryFlushModifiedList&lt;/code&gt; (Command &lt;code&gt;3&lt;/code&gt;) to flush dirty cached pages to disk.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pass 2&lt;/strong&gt;: Executes &lt;code&gt;MemoryPurgeStandbyList&lt;/code&gt; (Command &lt;code&gt;4&lt;/code&gt;) to release all standby memory.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. OS Core Protection Shield
&lt;/h3&gt;

&lt;p&gt;To prevent blue screens or forced logouts, RAMGuard Pro includes a hard-coded security shield that excludes core Windows OS processes (&lt;code&gt;system&lt;/code&gt;, &lt;code&gt;csrss.exe&lt;/code&gt;, &lt;code&gt;lsass.exe&lt;/code&gt;, &lt;code&gt;explorer.exe&lt;/code&gt;, &lt;code&gt;dwm.exe&lt;/code&gt;, etc.) from ever being trimmed or ended.&lt;/p&gt;




&lt;h2&gt;
  
  
  🚀 Features &amp;amp; Capabilities
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;⚡ &lt;strong&gt;Instant Memory Reclamation&lt;/strong&gt;: Frees up gigabytes of RAM in seconds.&lt;/li&gt;
&lt;li&gt;🛡️ &lt;strong&gt;UAC Admin Mode Detection&lt;/strong&gt;: Auto-detects token elevation status and displays live badges (&lt;strong&gt;Administrator Mode&lt;/strong&gt; vs &lt;strong&gt;User Mode&lt;/strong&gt;).&lt;/li&gt;
&lt;li&gt;📌 &lt;strong&gt;System Tray Background Watcher&lt;/strong&gt;: Auto-optimizes RAM in the background based on customizable memory thresholds (e.g. 85%).&lt;/li&gt;
&lt;li&gt;🖼️ &lt;strong&gt;Dark Glassmorphism UI&lt;/strong&gt;: Built with React 18, Vite, and custom SVG gauges.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔗 Links &amp;amp; Downloads
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🌐 &lt;strong&gt;Live Website&lt;/strong&gt;: &lt;a href="https://jojin1709.github.io/ramguard-pro/" rel="noopener noreferrer"&gt;jojin1709.github.io/ramguard-pro&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;📦 &lt;strong&gt;GitHub Repository&lt;/strong&gt;: &lt;a href="https://github.com/jojin1709/ramguard-pro" rel="noopener noreferrer"&gt;github.com/jojin1709/ramguard-pro&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🚀 &lt;strong&gt;Product Hunt Launch&lt;/strong&gt;: &lt;a href="https://www.producthunt.com/products/ramguard-pro?launch=ramguard-pro" rel="noopener noreferrer"&gt;producthunt.com/products/ramguard-pro&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;💼 &lt;strong&gt;LinkedIn Profile&lt;/strong&gt;: &lt;a href="https://www.linkedin.com/in/jojin-john/" rel="noopener noreferrer"&gt;linkedin.com/in/jojin-john/&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;Developed &amp;amp; Licensed by JOJIN JOHN.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>rust</category>
      <category>tauri</category>
      <category>microsoft</category>
      <category>showdev</category>
    </item>
    <item>
      <title>Building CyvoraX Suite: An Open-Source Web Security &amp; Penetration Testing Workbench</title>
      <dc:creator>Jojin John</dc:creator>
      <pubDate>Thu, 30 Jul 2026 13:43:03 +0000</pubDate>
      <link>https://dev.to/jojin1709/building-cyvorax-suite-an-open-source-web-security-penetration-testing-workbench-jog</link>
      <guid>https://dev.to/jojin1709/building-cyvorax-suite-an-open-source-web-security-penetration-testing-workbench-jog</guid>
      <description>&lt;h1&gt;
  
  
  Building CyvoraX Suite: An Open-Source Web Security &amp;amp; Penetration Testing Workbench
&lt;/h1&gt;

&lt;p&gt;Hello everyone! 👋&lt;/p&gt;

&lt;p&gt;Over the past several months, I've been working on &lt;strong&gt;CyvoraX Suite&lt;/strong&gt;, an open-source desktop application for web security testing and penetration testing.&lt;/p&gt;

&lt;p&gt;The project is still &lt;strong&gt;under active development&lt;/strong&gt;, and I'm sharing it early because I believe open-source software improves when it's built with community feedback rather than behind closed doors.&lt;/p&gt;




&lt;h1&gt;
  
  
  Why I Started This Project
&lt;/h1&gt;

&lt;p&gt;As someone interested in cybersecurity and bug bounty hunting, I wanted to understand how professional web security tools work under the hood.&lt;/p&gt;

&lt;p&gt;Rather than simply using existing tools, I wanted to explore questions like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How does a MITM proxy intercept HTTPS traffic?&lt;/li&gt;
&lt;li&gt;How can HTTP requests and responses be modified efficiently?&lt;/li&gt;
&lt;li&gt;What does a scalable plugin architecture look like?&lt;/li&gt;
&lt;li&gt;How can AI assist security researchers without replacing human analysis?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Those questions eventually became &lt;strong&gt;CyvoraX Suite&lt;/strong&gt;.&lt;/p&gt;




&lt;h1&gt;
  
  
  Tech Stack
&lt;/h1&gt;

&lt;p&gt;The project is primarily built with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Java 17&lt;/li&gt;
&lt;li&gt;JavaFX&lt;/li&gt;
&lt;li&gt;Netty&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To keep the architecture modular, some components are implemented using:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Rust&lt;/li&gt;
&lt;li&gt;Go&lt;/li&gt;
&lt;li&gt;C&lt;/li&gt;
&lt;li&gt;C++&lt;/li&gt;
&lt;li&gt;C#&lt;/li&gt;
&lt;/ul&gt;




&lt;h1&gt;
  
  
  Current Features
&lt;/h1&gt;

&lt;p&gt;Current functionality includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🛡️ MITM Interception Proxy&lt;/li&gt;
&lt;li&gt;🌐 HTTP Request &amp;amp; Response Editor&lt;/li&gt;
&lt;li&gt;🗺️ Target Site Mapping&lt;/li&gt;
&lt;li&gt;⚡ Turbo Intruder&lt;/li&gt;
&lt;li&gt;🤖 AI Vulnerability Assistant&lt;/li&gt;
&lt;li&gt;🔌 Modular Plugin Architecture&lt;/li&gt;
&lt;/ul&gt;




&lt;h1&gt;
  
  
  Current Status
&lt;/h1&gt;

&lt;p&gt;The project is functional, but it is &lt;strong&gt;not feature complete&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Some areas still need work, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;UI/UX improvements&lt;/li&gt;
&lt;li&gt;Additional proxy features&lt;/li&gt;
&lt;li&gt;More scanners&lt;/li&gt;
&lt;li&gt;Better documentation&lt;/li&gt;
&lt;li&gt;Performance optimizations&lt;/li&gt;
&lt;li&gt;Testing&lt;/li&gt;
&lt;li&gt;Plugin ecosystem&lt;/li&gt;
&lt;/ul&gt;




&lt;h1&gt;
  
  
  Looking for Contributors
&lt;/h1&gt;

&lt;p&gt;I'd love to collaborate with developers interested in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Java&lt;/li&gt;
&lt;li&gt;JavaFX&lt;/li&gt;
&lt;li&gt;Netty&lt;/li&gt;
&lt;li&gt;Rust&lt;/li&gt;
&lt;li&gt;Go&lt;/li&gt;
&lt;li&gt;C/C++&lt;/li&gt;
&lt;li&gt;UI/UX&lt;/li&gt;
&lt;li&gt;Documentation&lt;/li&gt;
&lt;li&gt;Web Security&lt;/li&gt;
&lt;li&gt;Testing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Whether you're fixing bugs, improving the UI, writing documentation, or implementing new features, every contribution is appreciated.&lt;/p&gt;




&lt;h1&gt;
  
  
  Roadmap
&lt;/h1&gt;

&lt;p&gt;Some of the features I'm planning include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;HTTP/3 support&lt;/li&gt;
&lt;li&gt;Additional vulnerability scanners&lt;/li&gt;
&lt;li&gt;Plugin SDK improvements&lt;/li&gt;
&lt;li&gt;Better AI workflows&lt;/li&gt;
&lt;li&gt;Performance optimizations&lt;/li&gt;
&lt;li&gt;Improved reporting&lt;/li&gt;
&lt;li&gt;More cross-platform support&lt;/li&gt;
&lt;/ul&gt;




&lt;h1&gt;
  
  
  Feedback Welcome
&lt;/h1&gt;

&lt;p&gt;If you have suggestions about the architecture, performance, user experience, or feature set, I'd genuinely appreciate your feedback.&lt;/p&gt;

&lt;p&gt;Open-source projects become better through discussion and collaboration.&lt;/p&gt;




&lt;h1&gt;
  
  
  GitHub
&lt;/h1&gt;

&lt;p&gt;⭐ Repository:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/jojin1709/CyvoraX-Suite" rel="noopener noreferrer"&gt;https://github.com/jojin1709/CyvoraX-Suite&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🌐 Website:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://jojin1709.github.io/CyvoraX-Suite/" rel="noopener noreferrer"&gt;https://jojin1709.github.io/CyvoraX-Suite/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thank you for reading!&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>java</category>
      <category>webdev</category>
      <category>cybersecurity</category>
    </item>
  </channel>
</rss>
