<?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: Akhouri Anmol Kumar</title>
    <description>The latest articles on DEV Community by Akhouri Anmol Kumar (@akhourianmolkumar).</description>
    <link>https://dev.to/akhourianmolkumar</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%2F3977056%2F5246045a-21af-48c6-a210-77be340f73e4.jpeg</url>
      <title>DEV Community: Akhouri Anmol Kumar</title>
      <link>https://dev.to/akhourianmolkumar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/akhourianmolkumar"/>
    <language>en</language>
    <item>
      <title>I built a Windows lock app that kills Task Manager. Here's how.</title>
      <dc:creator>Akhouri Anmol Kumar</dc:creator>
      <pubDate>Sat, 13 Jun 2026 05:34:16 +0000</pubDate>
      <link>https://dev.to/akhourianmolkumar/i-built-a-windows-lock-app-that-kills-task-manager-heres-how-41e7</link>
      <guid>https://dev.to/akhourianmolkumar/i-built-a-windows-lock-app-that-kills-task-manager-heres-how-41e7</guid>
      <description>&lt;p&gt;Most Windows lock apps are a joke.&lt;/p&gt;

&lt;p&gt;Alt+Tab your way out. Open Task Manager. Kill the process. Done. Bypassed in 3 seconds.&lt;/p&gt;

&lt;p&gt;I got tired of this. So at 13, I built ATLOCK.&lt;/p&gt;

&lt;p&gt;Here's exactly how the hardening works:&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Low-Level Keyboard Hook
&lt;/h2&gt;

&lt;p&gt;Windows has a hook called &lt;code&gt;WH_KEYBOARD_LL&lt;/code&gt; — it intercepts keystrokes at the OS level before any app can process them.&lt;/p&gt;

&lt;p&gt;ATLOCK uses this to block:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Alt+Tab&lt;/li&gt;
&lt;li&gt;Win key&lt;/li&gt;
&lt;li&gt;Alt+F4&lt;/li&gt;
&lt;li&gt;Escape&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No app can bypass this. Not even Task Manager.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Task Manager Watchdog
&lt;/h2&gt;

&lt;p&gt;A background thread runs continuously — checking every 500ms if Task Manager (&lt;code&gt;taskmgr.exe&lt;/code&gt;), Process Hacker, or ProcExp is running.&lt;/p&gt;

&lt;p&gt;If detected — killed instantly.&lt;/p&gt;

&lt;p&gt;The user never even sees it open.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Focus Enforcement Loop
&lt;/h2&gt;

&lt;p&gt;Another thread constantly calls &lt;code&gt;focus_force()&lt;/code&gt; and &lt;code&gt;grab_set()&lt;/code&gt; — making sure the lock screen always stays on top.&lt;/p&gt;

&lt;p&gt;Even if something tries to push it to background — it snaps back immediately.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. The Result
&lt;/h2&gt;

&lt;p&gt;A lock screen that genuinely cannot be escaped conventionally.&lt;/p&gt;

&lt;p&gt;No Alt+Tab. No Task Manager. No background push. Timer runs out or correct password — those are your only two options.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I Built This
&lt;/h2&gt;

&lt;p&gt;I'm Akhouri Anmol Kumar — 13 years old, India, founder of Akhouri Systems.&lt;/p&gt;

&lt;p&gt;ATLOCK also has File Guard (NTFS ACL-level), Password Vault with 10-hour lockout, and a Notification Panel.&lt;/p&gt;

&lt;p&gt;Single .exe. No installation. Just run.&lt;/p&gt;

&lt;p&gt;Feedback welcome — especially from security researchers.&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/Akhouri-Anmol-Kumar/ATLOCK" rel="noopener noreferrer"&gt;https://github.com/Akhouri-Anmol-Kumar/ATLOCK&lt;/a&gt;&lt;br&gt;
Website: &lt;a href="https://akhouri-anmol-kumar.github.io/Akhouri-systems" rel="noopener noreferrer"&gt;https://akhouri-anmol-kumar.github.io/Akhouri-systems&lt;/a&gt;&lt;/p&gt;

</description>
      <category>security</category>
      <category>python</category>
      <category>microsoft</category>
      <category>showdev</category>
    </item>
    <item>
      <title>I'm a 13-year-old Indian developer. Here's what I built.</title>
      <dc:creator>Akhouri Anmol Kumar</dc:creator>
      <pubDate>Wed, 10 Jun 2026 06:26:18 +0000</pubDate>
      <link>https://dev.to/akhourianmolkumar/im-a-13-year-old-indian-developer-heres-what-i-built-1flo</link>
      <guid>https://dev.to/akhourianmolkumar/im-a-13-year-old-indian-developer-heres-what-i-built-1flo</guid>
      <description>&lt;p&gt;I'm Akhouri Anmol Kumar — a 13-year-old software developer from Jharkhand, India, and the founder of Akhouri Systems.&lt;/p&gt;

&lt;p&gt;I started building software because I was frustrated. Every app I used had problems nobody bothered to fix. Windows Notepad hadn't changed in decades. Lock apps could be bypassed in 3 seconds. Calculators had zero personality.&lt;/p&gt;

&lt;p&gt;So I built my own.&lt;/p&gt;

&lt;p&gt;In the last few months, I shipped 4 Windows desktop applications completely solo:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ATLOCK&lt;/strong&gt; — A total security suite. System lockdown, file guard, password vault, and security hardening. Once locked, there is no escape. Alt+Tab blocked. Task Manager killed on sight.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ANOTE&lt;/strong&gt; — A premium text editor. Multi-tab, syntax highlighting, password lock, translator, meme canvas. Everything Notepad should have been.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ACALCU&lt;/strong&gt; — The world's most customizable calculator. Right-click any button. Change colors, fonts, even set videos as button backgrounds.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;APIC&lt;/strong&gt; — Advanced Image Processing Center. Edit, convert, compress, batch process — all in one app.&lt;/p&gt;

&lt;p&gt;Every single line of code written by me. No team. No funding. No mentor.&lt;/p&gt;

&lt;p&gt;I named the company Akhouri Systems because I wanted it to feel like a real company — because it is one.&lt;/p&gt;

&lt;p&gt;We build what others forgot to fix.&lt;/p&gt;

&lt;p&gt;This is just the beginning.&lt;/p&gt;




&lt;p&gt;GitHub: &lt;a href="https://github.com/Akhouri-Anmol-Kumar" rel="noopener noreferrer"&gt;https://github.com/Akhouri-Anmol-Kumar&lt;/a&gt;&lt;br&gt;
Website: &lt;a href="https://akhouri-anmol-kumar.github.io/Akhouri-systems" rel="noopener noreferrer"&gt;https://akhouri-anmol-kumar.github.io/Akhouri-systems&lt;/a&gt;&lt;br&gt;
Product Hunt: &lt;a href="https://www.producthunt.com/posts/atlock" rel="noopener noreferrer"&gt;https://www.producthunt.com/posts/atlock&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>showdev</category>
      <category>beginners</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
