Mortex.Core.Integrity
1.0.1
See the version list below for details.
dotnet add package Mortex.Core.Integrity --version 1.0.1
NuGet\Install-Package Mortex.Core.Integrity -Version 1.0.1
<PackageReference Include="Mortex.Core.Integrity" Version="1.0.1" />
<PackageVersion Include="Mortex.Core.Integrity" Version="1.0.1" />
<PackageReference Include="Mortex.Core.Integrity" />
paket add Mortex.Core.Integrity --version 1.0.1
#r "nuget: Mortex.Core.Integrity, 1.0.1"
#:package Mortex.Core.Integrity@1.0.1
#addin nuget:?package=Mortex.Core.Integrity&version=1.0.1
#tool nuget:?package=Mortex.Core.Integrity&version=1.0.1
🛡️ 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
🇹🇷 Güvenlik Notu (Turkish Security Note)
MORTEX, internetten indirilen ve ne yaptığı tam olarak bilinmeyen "kapalı kutu" güvenlik araçlarına bir tepki olarak geliştirilmiştir.
En güvenli kod, satır satır ne yaptığını bildiğiniz koddur. Bu kütüphane, C# ile geliştirilmiş saf bir "Obfuscation" ve "Integrity" motorudur. Özellikle Mirage modu, verilerinizi Windows Sistem Logları gibi göstererek, antivirüslerin ve meraklı gözlerin dikkatini dağıtmak için tasarlanmıştır.
Sistemlerinizi başkalarının kütüphanelerine emanet etmeyin. Kendi güvenli limanınızı inşa edin.
| 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.