2025-06-20 19:28:00
github.com
A security-first operating system built from scratch with real memory protection, cryptography, and a deterministic programming language.
AtomicOS is an educational operating system that prioritizes security over performance. Unlike many hobby OS projects, it implements real security features including AES-128 encryption, SHA-256 hashing, and a complete Memory Management Unit (MMU).
Philosophy: “Seguridad primero, luego estabilidad y luego performance” (Security first, then stability, then performance)
- ✅ Custom bootloader (Multiboot compliant)
- ✅ Protected mode with stack protection
- ✅ Memory Management Unit (MMU) with 2-level paging
- ✅ Physical and virtual memory management
- ✅ VGA text mode with color support
- ✅ Real AES-128 encryption (not XOR!)
- ✅ SHA-256 cryptographic hashing
- ✅ Memory guards and bounds checking
- ✅ W^X (Write XOR Execute) enforcement
- ✅ Secure memory wiping on free
- ✅ Page-level access control
- ✅ Deterministic execution
- ✅ Worst-Case Execution Time (WCET) analysis
- ✅ Compiles to x86 assembly
- ✅ Integrated runtime in kernel
i686-elf-gcc
(cross-compiler for x86)nasm
(Netwide Assembler)qemu-system-i386
(for testing)make
# Build AtomicOS v0.4 with MMU
make -f Makefile.v4
# Run in QEMU
./run_mmu.sh
# v0.3 - Security-first design
make -f Makefile.v3
./run_atomicos.sh
# Simple visual demo
make -f Makefile.demo
./ver_demo.sh
AtomicOS/
├── kernel/
│ ├── kernel_v4_mmu.c # Latest kernel with MMU
│ ├── mmu.c # Memory Management Unit
│ ├── crypto_real.c # AES-128 & SHA-256
│ ├── boot.asm # Bootloader
│ └── ...
├── tempo/
│ ├── tempo_compiler.c # Tempo language compiler
│ ├── LANGUAGE_SPEC.md # Language specification
│ └── examples/
└── docs/
├── REALITY_CHECK.md # Honest assessment
└── EVIDENCE_*.md # Test results
0x00000000 - 0x003FFFFF : Kernel Space (4MB)
0x00400000 - 0xBFFFFFFF : User Space
0xC0000000 - 0xFFFFFFFF : Kernel Mirror (Higher Half)
- AES-128: Full implementation with S-boxes, MixColumns, and key scheduling
- SHA-256: Complete with 64 rounds and proper constants
- MMU: Hardware-enforced memory protection via page tables
This is an educational project. While it implements real security concepts, it is NOT production-ready:
- No network stack
- No file system
- No device drivers (except basic VGA)
- Single-threaded execution
- Limited error handling
MIT License with attribution requirements. See LICENSE file.
Key points:
- ✅ Open source – you can use, modify, and distribute
- ✅ Attribution required – must credit original project
- ✅ Name protection – forks must use different name
- ✅ Change disclosure – modifications must be documented
Contributions welcome! Please:
- Fork the repository
- Create a feature branch
- Document your changes
- Submit a pull request
Original Author: Ignacio Peña
Created: 2024
AtomicOS Boot Demo on YouTube – Boot demonstration and features
“No exploits, no crashes, no lies.” – AtomicOS motto
Keep your files stored safely and securely with the SanDisk 2TB Extreme Portable SSD. With over 69,505 ratings and an impressive 4.6 out of 5 stars, this product has been purchased over 8K+ times in the past month. At only $129.99, this Amazon’s Choice product is a must-have for secure file storage.
Help keep private content private with the included password protection featuring 256-bit AES hardware encryption. Order now for just $129.99 on Amazon!
Help Power Techcratic’s Future – Scan To Support
If Techcratic’s content and insights have helped you, consider giving back by supporting the platform with crypto. Every contribution makes a difference, whether it’s for high-quality content, server maintenance, or future updates. Techcratic is constantly evolving, and your support helps drive that progress.
As a solo operator who wears all the hats, creating content, managing the tech, and running the site, your support allows me to stay focused on delivering valuable resources. Your support keeps everything running smoothly and enables me to continue creating the content you love. I’m deeply grateful for your support, it truly means the world to me! Thank you!
BITCOIN bc1qlszw7elx2qahjwvaryh0tkgg8y68enw30gpvge Scan the QR code with your crypto wallet app |
DOGECOIN D64GwvvYQxFXYyan3oQCrmWfidf6T3JpBA Scan the QR code with your crypto wallet app |
ETHEREUM 0xe9BC980DF3d985730dA827996B43E4A62CCBAA7a Scan the QR code with your crypto wallet app |
Please read the Privacy and Security Disclaimer on how Techcratic handles your support.
Disclaimer: As an Amazon Associate, Techcratic may earn from qualifying purchases.