DEV Community

Cover image for ๐Ÿ”’ ATLOCK v4 โ€” A Technical Breakdown of a Windows Security Suite I Built From the Ground Up
Akhouri Anmol Kumar
Akhouri Anmol Kumar

Posted on

๐Ÿ”’ ATLOCK v4 โ€” A Technical Breakdown of a Windows Security Suite I Built From the Ground Up

A deep dive into the architecture, security model, NTFS ACL protection, password vault, Intruder Ops, local-first design, failure handling, and the engineering decisions behind ATLOCK v4.

๐Ÿš€ Try ATLOCK v4:
https://github.com/Akhouri-Anmol-Kumar/ATLOCK

โš ๏ธ Important: ATLOCK is an independent Windows security project. It is not intended to replace Windows security features such as BitLocker, Microsoft Defender, enterprise endpoint protection, or dedicated password managers. The goal is to provide an additional local security layer and to explore practical Windows security engineering.

๐Ÿงญ What You're Looking At

ATLOCK started as a relatively simple idea:

What if several useful Windows security functions could live inside one local application?

That idea eventually evolved into a much larger engineering problem.

The current ATLOCK v4 architecture brings together several different security mechanisms:

                     โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
                     โ”‚      ATLOCK v4       โ”‚
                     โ”‚   Windows Security   โ”‚
                     โ”‚        Suite         โ”‚
                     โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                                โ”‚
         โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
         โ”‚                      โ”‚                      โ”‚
         โ–ผ                      โ–ผ                      โ–ผ
  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”       โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
  โ”‚ File Guard  โ”‚        โ”‚   Vault     โ”‚       โ”‚ Intruder Ops โ”‚
  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”˜        โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”˜       โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
         โ”‚                      โ”‚                     โ”‚
         โ–ผ                      โ–ผ                     โ–ผ
    NTFS ACLs              PBKDF2 + Fernet       Camera / Alert
         โ”‚                      โ”‚                     โ”‚
         โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                        โ–ผ
                Local Windows System
Enter fullscreen mode Exit fullscreen mode

And that's what makes the project interesting to me.

These aren't three versions of the same security mechanism.

They're solving different problems.

  1. The Core Design Philosophy

The biggest architectural decision wasn't a library.

It was this:

Don't use the same security mechanism for every security problem.

For example:

File access

The primary question is:

Who should be allowed to access this object?

That's an authorization problem.

Password storage

The primary question is:

How do we protect sensitive data if the storage itself is obtained?

That's a confidentiality + integrity/authentication problem.

Intrusion response

The primary question is:

What should happen when configured suspicious access/authentication events occur?

That's an event-response problem.

So the architecture becomes:

                SECURITY PROBLEM
                       โ”‚
        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
        โ–ผ              โ–ผ              โ–ผ
   Authorization   Confidentiality   Response
        โ”‚              โ”‚              โ”‚
     NTFS ACLs       Fernet        Intruder Ops
Enter fullscreen mode Exit fullscreen mode

That separation is one of the most important lessons I've learned from building ATLOCK.

  1. ๐Ÿ›ก๏ธ File Guard โ€” Using Windows' Existing Security Model

One of the most interesting parts of ATLOCK is File Guard.

I didn't want to invent an entirely separate permission system.

Windows already has one.

NTFS Access Control Lists.

An ACL can contain access-control entries describing permissions associated with security principals.

Conceptually:

              PROCESS
                 โ”‚
                 โ–ผ
          Windows Token
                 โ”‚
                 โ–ผ
          Security Check
                 โ”‚
                 โ–ผ
            NTFS Object
                 โ”‚
                 โ–ผ
             ACL / ACEs
                 โ”‚
          โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”
          โ–ผ             โ–ผ
        ALLOW          DENY
Enter fullscreen mode Exit fullscreen mode

This matters because the operating system is already involved in the access-control decision.

ATLOCK therefore isn't trying to become an entirely separate filesystem security subsystem.

Instead, File Guard works with a security mechanism Windows already understands.

  1. Why ACLs Instead of Encrypting Everything?

This distinction is easy to miss.

Suppose I have:

Documents/
โ”œโ”€โ”€ project.pdf
โ”œโ”€โ”€ passwords.txt
โ””โ”€โ”€ source.zip

There are at least two fundamentally different questions:

Question A

Can an unauthorized identity access these files?

That's where access control comes in.

Question B

If somebody obtains the underlying data, can they interpret it?

That's where encryption comes in.

Visualized:

             FILE SECURITY
                  โ”‚
      โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
      โ”‚                       โ”‚
      โ–ผ                       โ–ผ
 AUTHORIZATION          CONFIDENTIALITY
      โ”‚                       โ”‚
   NTFS ACLs              Encryption
      โ”‚                       โ”‚
"Who can access?"      "Can data be read?"
Enter fullscreen mode Exit fullscreen mode

Neither mechanism is a universal replacement for the other.

That's why ATLOCK uses different mechanisms for File Guard and the Password Vault.

  1. ๐Ÿ” Password Vault Architecture

The Password Vault is where cryptography becomes central.

ATLOCK v4 uses Fernet for the vault.

The high-level flow is:

             USER PASSWORD
                   โ”‚
                   โ–ผ
          PBKDF2-HMAC-SHA256
                   โ”‚
                   โ–ผ
             DERIVED KEY
                   โ”‚
                   โ–ผ
                FERNET
                   โ”‚
         โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
         โ–ผ                   โ–ผ
      Encrypt             Decrypt
         โ”‚                   โ”‚
         โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                   โ–ผ
             VAULT DATA
Enter fullscreen mode Exit fullscreen mode

The important thing here is that a user's password shouldn't simply be treated as a cryptographic key directly.

Password-based key derivation is a separate step.

ATLOCK uses:

PBKDF2-HMAC-SHA256

for that purpose.

  1. ๐Ÿ”‘ Why PBKDF2 Exists

Human passwords and cryptographic keys are fundamentally different things.

A password might be:

my-password

A cryptographic key needs a suitable representation and should not simply be treated as an arbitrary human string.

So the architecture performs key derivation:

Password
โ”‚
โ–ผ
PBKDF2-HMAC-SHA256
โ”‚
โ–ผ
Derived cryptographic key
โ”‚
โ–ผ
Fernet

ATLOCK v4 uses 200,000 PBKDF2 iterations in the implementation you've described.

The purpose is to make password guessing more computationally expensive than simply applying a fast hash once.

  1. ๐Ÿงฑ What Fernet Gives the Vault

Fernet provides an authenticated-encryption construction.

In the implementation ATLOCK uses, this involves:

AES-128-CBC for encryption
HMAC-SHA256 for authentication/integrity

That means the vault isn't merely doing:

โ€œTurn plaintext into ciphertext.โ€

It also has authentication/integrity protection.

Conceptually:

PLAINTEXT
โ”‚
โ–ผ
Encryption
โ”‚
โ–ผ
Ciphertext + authentication information
โ”‚
โ–ผ
Stored vault data

During decryption:

Stored data
โ”‚
โ–ผ
Authentication verification
โ”‚
โ”œโ”€โ”€โ”€โ”€ FAIL โ”€โ”€โ”€โ”€โ–บ Reject
โ”‚
โ–ผ
Decryption
โ”‚
โ–ผ
Plaintext

That failure path matters.

A cryptographic system shouldn't silently treat corrupted or unauthenticated data as valid plaintext.

  1. ๐Ÿ“ธ Intruder Ops

Then we reach one of the more unusual components:

Intruder Ops.

The basic concept is:

Configured security event
โ”‚
โ–ผ
Event logic
โ”‚
โ–ผ
Trigger condition
โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”
โ–ผ โ–ผ
Alert Capture
โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”
โ–ผ โ–ผ
Photo Video

The important engineering problem wasn't simply:

โ€œHow do I take a webcam picture?โ€

That's the easy part.

The harder question is:

How do I make hardware-dependent operations behave reliably inside a security application?

  1. ๐ŸŽฅ Webcam Capture Is Messier Than It Looks

For webcam capture, ATLOCK uses OpenCV, including cv2.VideoCapture.

On paper:

camera = cv2.VideoCapture(0)

looks trivial.

Real hardware isn't.

The camera can:

take time to initialize
already be occupied by another application
be unavailable
fail to open
return invalid frames
behave differently between devices

So the application needs to treat camera access as a failure-prone external dependency.

The conceptual workflow is:

         Camera Request
               โ”‚
               โ–ผ
         Initialization
               โ”‚
      โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
      โ–ผ                 โ–ผ
   Success             Failure
      โ”‚                 โ”‚
      โ–ผ                 โ–ผ
  Capture           Handle Error
      โ”‚                 โ”‚
      โ–ผ                 โ–ผ
   Release          Continue Safely
Enter fullscreen mode Exit fullscreen mode

And there's another important requirement:

The UI shouldn't freeze.

A security event shouldn't cause the entire application interface to become unresponsive while a camera operation initializes.

That pushed the implementation toward asynchronous/non-blocking handling of the capture workflow.

  1. ๐Ÿ”Š Security Alerts

Intruder Ops also interacts with the application's alert system.

That creates another small state machine:

EVENT
โ”‚
โ–ผ
TRIGGER
โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ–ผ โ–ผ
AUDIO CAPTURE
ALERT โ”‚
โ–ผ
STORAGE

The goal is not to make the application constantly scream alarms.

The goal is to make security events observable to the user.

That's why ATLOCK v4 includes configurable sound effects and notification behavior.

  1. โš™๏ธ Settings Architecture

As ATLOCK gained features, another problem appeared.

Every new feature created more configuration.

Eventually:

File Guard
Vault
Intruder Ops
Sound
Notifications
Lockdown

all needed places where their behavior could be configured.

That's why v4 introduced a dedicated Settings dashboard.

Conceptually:

                   SETTINGS
                       โ”‚
    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
    โ–ผ                  โ–ผ                  โ–ผ
Enter fullscreen mode Exit fullscreen mode

Intruder Ops Audio Application
โ”‚ โ”‚ โ”‚
โ–ผ โ–ผ โ–ผ
Capture Sounds Preferences
Behavior Alerts

Centralizing configuration is not just a UI decision.

It also reduces the problem of having unrelated settings scattered across different screens.

  1. ๐Ÿ–ฅ๏ธ Desktop Lockdown

Another ATLOCK component is Desktop Lockdown.

The design objective here is different again.

It's not primarily about encrypting data.

It's about controlling the user's interaction with the application/system workflow during a locked state.

That makes it another example of why the suite shouldn't be thought of as:

โ€œOne giant encryption engine.โ€

It's a collection of different security controls working at different layers.

  1. ๐Ÿง  The Local-First Architecture

One of my strongest design choices was keeping ATLOCK local-first.

No mandatory account.

No mandatory cloud backend.

No requirement to upload security events to a remote server.

The conceptual architecture is:

              ATLOCK
                 โ”‚
    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
    โ”‚                         โ”‚
 Windows                  Local Storage
    โ”‚                         โ”‚
    โ”œโ”€โ”€ NTFS                  โ”œโ”€โ”€ Vault
    โ”œโ”€โ”€ Camera                โ”œโ”€โ”€ Evidence
    โ”œโ”€โ”€ Audio                 โ””โ”€โ”€ Settings
    โ””โ”€โ”€ UI
Enter fullscreen mode Exit fullscreen mode

This doesn't magically make an application secure.

Local software still has to protect its local data and handle permissions correctly.

But it does remove an entire category of cloud-related dependencies from the basic workflow.

  1. ๐ŸŒ Why I Chose Local-First

Security software has a strange relationship with data collection.

A developer can always say:

โ€œWe'll collect telemetry to improve the product.โ€

And sometimes that's useful.

But every additional piece of collected information creates another responsibility.

You have to ask:

What is collected?
Why is it collected?
Where is it stored?
Who can access it?
How long is it retained?
What happens if that system is compromised?

ATLOCK's local-first approach intentionally avoids making cloud infrastructure a requirement for its core functionality.

  1. ๐Ÿ”„ The Application as a Collection of State Machines

One thing I increasingly realized while developing ATLOCK is that many โ€œfeaturesโ€ are actually state machines.

For example, authentication:

      โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
      โ”‚     LOCKED    โ”‚
      โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
              โ”‚
         User attempt
              โ”‚
      โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
      โ–ผ                โ–ผ
   SUCCESS           FAILURE
      โ”‚                โ”‚
      โ–ผ                โ–ผ
  UNLOCKED        Failure handling
Enter fullscreen mode Exit fullscreen mode

Intruder Ops:

NORMAL
โ”‚
โ–ผ
FAILED EVENT
โ”‚
โ–ผ
THRESHOLD / RULE
โ”‚
โ”œโ”€โ”€โ”€โ”€ NO โ”€โ”€โ”€โ”€โ–บ Continue
โ”‚
โ–ผ
TRIGGER
โ”‚
โ–ผ
ALERT + CAPTURE

File protection:

UNPROTECTED
โ”‚
โ–ผ
Protection request
โ”‚
โ–ผ
ACL operation
โ”‚
โ”Œโ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”
โ–ผ โ–ผ
SUCCESS FAILURE
โ”‚ โ”‚
โ–ผ โ–ผ
PROTECTED Error handling

Thinking in states rather than individual buttons made the architecture easier to reason about.

  1. ๐Ÿ’ฅ Failure Handling Is More Important Than the Demo

A demo usually looks like this:

CLICK
โ†“
SUCCESS
โ†“
NEXT FEATURE

Real software looks like this:

CLICK
โ†“
Maybe success
โ†“
Maybe permission denied
โ†“
Maybe hardware unavailable
โ†“
Maybe malformed input
โ†“
Maybe process interruption
โ†“
Maybe unexpected state

That's especially important for security software.

A failure in a calculator is annoying.

A failure during a security operation can potentially create a much bigger problem.

So I increasingly evaluate ATLOCK by asking:

What happens when this operation fails halfway through?

rather than:

Does the happy path work?

  1. ๐Ÿงช My Testing Mindset

My testing process has gradually changed.

Instead of only testing:

Expected input โ†’ Expected output

I also think about:

Unexpected input
โ†“
Unexpected state
โ†“
Unavailable hardware
โ†“
Permission failure
โ†“
Interrupted operation
โ†“
Application restart

This is one reason building software yourself teaches things that tutorials don't.

A tutorial can show you how to implement a feature.

Your own application forces you to discover what happens when reality disagrees with your assumptions.

  1. ๐Ÿ” Threat Modeling ATLOCK

I'm also trying to become more disciplined about the threat model.

A security feature without a defined threat model can become security theater.

For each component, I want to ask:

Asset

What are we protecting?

Adversary

Who are we protecting it from?

Capability

What can the adversary actually do?

Boundary

Where does ATLOCK's protection begin and end?

Failure

What happens when the mechanism fails?

For example:

      THREAT MODEL
           โ”‚
  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
  โ–ผ        โ–ผ        โ–ผ
Asset   Adversary  Boundary
  โ”‚        โ”‚        โ”‚
  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
           โ–ผ
        Control
           โ”‚
           โ–ผ
        Failure
           โ”‚
           โ–ผ
        Recovery
Enter fullscreen mode Exit fullscreen mode

This is much more useful than simply saying:

โ€œATLOCK is secure.โ€

No serious security software should be evaluated with a sentence that simple.

  1. ๐Ÿ” What ATLOCK Is โ€” and Isn't

ATLOCK is:

A Windows security application
A local-first security project
An exploration of Windows access control
A practical cryptography implementation
An event-response system
An ongoing engineering project

ATLOCK isn't:

A replacement for BitLocker
A replacement for Microsoft Defender
A replacement for enterprise EDR
A magic security layer
A guarantee that a Windows machine cannot be compromised

That's an important distinction.

Security engineering requires knowing the boundary of your protection.

  1. ๐Ÿ—๏ธ Why I Didn't Just Build Another Utility

There are already countless Windows utilities.

There are password managers.

There are encryption tools.

There are lockdown applications.

There are monitoring tools.

So why build another one?

Because building your own system forces you to understand the interaction between components.

For example:

Authentication
โ”‚
โ–ผ
Security Event
โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ–ผ โ–ผ
Intruder Ops Application
โ”‚ โ”‚
โ–ผ โ–ผ
Capture UI State
โ”‚
โ–ผ
Local Evidence

The interesting engineering isn't necessarily inside each box.

It's often in the connections between the boxes.

  1. ๐Ÿค– Where AI Fits Into My Development

I also want to be transparent about how ATLOCK is developed.

AI tools have played a major role in my development workflow.

I use AI for things like:

explaining unfamiliar APIs
generating implementation ideas
debugging
refactoring suggestions
researching approaches
reviewing code
exploring alternatives

But there's an important difference between:

AI generated the code

and:

AI helped me build the software.

The second describes my workflow much better.

I still have to decide:

what feature to build
what architecture makes sense
what behavior I want
what to test
what failed
what needs changing
whether an implementation actually works

AI can accelerate implementation.

It doesn't remove the responsibility of understanding the system.

  1. ๐Ÿ“ฆ Why the Portable Model Matters

ATLOCK is designed around portable Windows deployment.

The goal is straightforward:

Download
โ†“
Run
โ†“
Use

rather than forcing the user through a complicated installation workflow.

That makes experimentation easier.

It also fits the local-first philosophy of the project.

  1. ๐Ÿงฉ The Architecture Is Still Evolving

ATLOCK v4 isn't the end.

In fact, shipping v4 exposed more questions than it answered.

That's normal.

A real project evolves through:

Idea
โ†“
Prototype
โ†“
Implementation
โ†“
Testing
โ†“
Failure
โ†“
Feedback
โ†“
Redesign
โ†“
Release
โ†“
Repeat

Every version is essentially a snapshot of what I currently understand.

The next version should represent what I learned from this one.

  1. ๐Ÿšง What I Want to Improve Next

Some of the areas I'm particularly interested in improving are:

Security
More rigorous threat modeling
Stronger failure-state handling
Better permission-state recovery
More defensive input validation
Reliability
Better hardware failure handling
More robust asynchronous operations
Improved crash recovery
More extensive testing across Windows configurations
UX
Clearer security explanations
Better error messages
Simpler configuration
More transparent security states
Architecture
Cleaner separation between modules
Better internal abstractions
Easier testing
More predictable state transitions

  1. ๐Ÿ“Š The Biggest Lesson

When I started, I thought building a security application was mostly about adding security features.

Now I think differently.

The real challenge is understanding boundaries.

Where does authentication end?

Where does authorization begin?

Where does encryption matter?

What does the operating system already provide?

What happens when hardware disappears?

What happens when permissions fail?

What happens when the user does something you didn't anticipate?

And most importantly:

What exactly are you promising to protect?

Those questions are where the real engineering starts.

๐Ÿ”ฅ Why ATLOCK Exists

ATLOCK isn't the result of me knowing everything about Windows security.

Quite the opposite.

It exists because I wanted to learn by building something difficult enough to expose what I don't know.

Every bug becomes a lesson.

Every failure exposes an assumption.

Every technical criticism gives me another perspective.

Every user who tests the application provides another environment I couldn't reproduce myself.

That's what makes building software addictive.

You don't just create the thing.

The thing changes the person building it.

Final Architecture

If I had to reduce ATLOCK v4 to one diagram, it would be this:

                     โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
                     โ”‚    ATLOCK v4    โ”‚
                     โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                              โ”‚
    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
    โ”‚                         โ”‚                         โ”‚
    โ–ผ                         โ–ผ                         โ–ผ
Enter fullscreen mode Exit fullscreen mode

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ FILE GUARD โ”‚ โ”‚ VAULT โ”‚ โ”‚ INTRUDER OPS โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
โ”‚ โ”‚ โ”‚
โ–ผ โ–ผ โ–ผ
NTFS ACLs PBKDF2-HMAC-SHA256 OpenCV / Camera
โ”‚ โ”‚ โ”‚
โ”‚ Fernet โ”‚
โ”‚ โ”‚ โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
โ”‚ โ”‚
โ–ผ โ–ผ
Windows System Local Storage
โ”‚ โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
โ–ผ
User Experience

And underneath all of it:

         THREAT MODEL
               +
         FAILURE HANDLING
               +
         TESTING
               +
         USER FEEDBACK
               โ”‚
               โ–ผ
         NEXT VERSION
Enter fullscreen mode Exit fullscreen mode

That's the part of ATLOCK I'm most interested in.

Not simply what it does.

But why it works the way it does, where it can fail, and what I can learn from those failures.

๐Ÿ”’ Try ATLOCK v4

If you're a Windows developer, security enthusiast, or simply someone who likes experimenting with desktop software, I'd genuinely appreciate technical feedback.

GitHub:
https://github.com/Akhouri-Anmol-Kumar/ATLOCK

If you test it, don't just tell me:

โ€œLooks good.โ€

Tell me:

โ€œHere's what I think you got wrong.โ€

That's much more useful.

One Last Principle

Don't build security features because they sound impressive.

Build them because you can explain:

what they protect, what they don't protect, who they're protecting against, and what happens when they fail.

That's the standard I'm trying to hold ATLOCK to.

And I'm still learning.

โ€” Akhouri Anmol Kumar
Akhouri Systems ๐Ÿ‡ฎ๐Ÿ‡ณ

ATLOCK

"We Build What Others Forgot To Fix"



Top comments (0)