Mortex.Core.Integrity
1.0.3
dotnet add package Mortex.Core.Integrity --version 1.0.3
NuGet\Install-Package Mortex.Core.Integrity -Version 1.0.3
<PackageReference Include="Mortex.Core.Integrity" Version="1.0.3" />
<PackageVersion Include="Mortex.Core.Integrity" Version="1.0.3" />
<PackageReference Include="Mortex.Core.Integrity" />
paket add Mortex.Core.Integrity --version 1.0.3
#r "nuget: Mortex.Core.Integrity, 1.0.3"
#:package Mortex.Core.Integrity@1.0.3
#addin nuget:?package=Mortex.Core.Integrity&version=1.0.3
#tool nuget:?package=Mortex.Core.Integrity&version=1.0.3
🛡️ MORTEX Core: Cryptographic Mirage Engine
"The only truly secure system is the one you build yourself."
MORTEX is a manifesto against black-box security tools. It provides a pure, dependency-free foundation for developers who demand absolute control over their data integrity.
👁️ What is the Mirage Protocol?
Standard encryption creates high-entropy data blocks that scream "I am a secret!" to antivirus heuristics and automated scanners. MORTEX changes the game.
The Mirage Protocol wraps your sensitive data inside a camouflaged envelope that mimics standard Windows System Event Logs.
- To an Antivirus: It looks like a benign "Service Control Manager" or "Kernel-General" log entry.
- To a Human Analyst: It appears as standard system noise/logs, reducing the curiosity factor.
- To the Engine: It is a valid, integrity-checked payload waiting to be resolved.
This is not just encryption; it is steganographic obfuscation designed to hide the existence of the secret, not just its content.
🚀 Key Features
- 📦 Zero-Dependency Architecture: No third-party DLLs. No supply chain risks. Just pure, native C# logic.
- 🛡️ Hardened Runtime: Critical methods (
Protect,Resolve,InternalXor) are decorated with[MethodImpl(NoOptimization)]to resist JIT inlining and complicate decompiler analysis. - 👻 Stealth Metadata: The library minimizes its footprint, using generic naming conventions internally to blend into enterprise environments.
- ⚡ High-Performance XOR: Includes a custom, noise-augmented XOR transformation layer for speed and obfuscation.
💻 Quick Start
Installation
dotnet add package Mortex.Core.Integrity
Usage
1. Paranoid Mode (Mirage Protocol)
This mode wraps the data in fake Windows Event Logs.
using Mortex.Core;
string secret = "Database_Connection_String_Value";
// PROTECT: Wraps in Windows Event Log camouflage
// Result looks like: "Log Name: System... Source: Service Control Manager..."
string mirageLog = MortexEngine.Protect(secret, TransformMode.Xor, profile: "paranoid");
// RESOLVE: Extracts the payload from the noise
string original = MortexEngine.Resolve(mirageLog);
2. Standard Mode (High Performance)
Standard Base64 or XOR wrapping for internal data transfer.
// Fast encoding with integrity signature
string protectedData = MortexEngine.Protect("User_Password", TransformMode.Base64);
// Verify and Resolve
if (MortexEngine.VerifySignature(protectedData))
{
string clearText = MortexEngine.Resolve(protectedData);
}
🏛️ Architect's Note
In an era of compromised supply chains and "free" security tools that harvest data, reliance is a vulnerability. MORTEX was built to prove that a single developer, armed with pure logic and no dependencies, can build a fortress.
This library is not designed to replace AES-256 for banking transactions; it is designed to obfuscate configuration secrets, internal tokens, and logic flags from prying eyes and automated scrapers.
Built by: isinmelih
Organization: MORTEX Global Integrity Systems
🏗️ Architect's Manifesto / Mimarın Manifestosu
EN: Security is not something you can buy or download from the internet. Most public tools and libraries are riddled with backdoors or hidden vulnerabilities. The only truly secure system is the one you build yourself, line by line, understanding every byte. MORTEX is a tool for digital sovereignty. Remember: building the application yourself is always better than risking infection from unknown sources. Don't be a victim of convenience; be the architect of your own fortress.
TR: Güvenlik, internetten satın alabileceğiniz veya indirebileceğiniz bir meta değildir. İnternetteki çoğu araç ve kütüphane arka kapılarla veya gizli zafiyetlerle doludur. Gerçekten güvenli olan tek sistem; her satırına hakim olduğunuz, her baytını anlayarak kendi ellerinizle inşa ettiğiniz sistemdir. MORTEX, dijital egemenliğinizi kurmanız için bir araçtır. Unutmayın: Uygulamayı bizzat yapmak, kaynağı belirsiz yazılımlarla virüs kapma riskinden her zaman daha iyidir. Kolaylığın kurbanı olmayın; kendi kalenizin mimarı olun.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.