International Research Journal of Engineering and Technology (IRJET)
e-ISSN: 2395-0056
Volume: 13 Issue: 06 | Jun 2026
p-ISSN: 2395-0072
www.irjet.net
TSSD:Moving-Target Security for Messaging Applications 1Shanmuga Priyan M, 2Marimuthu R, 3Sankar Narayan S T
Department of Cyber Forensics & Information Security Dr MGR Educational and research institute, Tamil Nadu, Chennai, India. -----------------------------------------------------------------------***------------------------------------------------------------------------
Abstract–Secure communication has always been a critical challenge, but today's messaging apps face threats far more
sophisticated than traditional firewalls can handle. Attackers no longer just try to intercept messages — they study server behavior, map out infrastructure, and launch precisely targeted strikes. This paper presents a Moving-Target Defense (MTD) based messaging architecture that addresses these modern threats by making the system itself unpredictable. Rather than sitting at a fixed address waiting to be found, the real message-processing server constantly shifts its identity among multiple decoy nodes, all fed by an Nginx load balancer that distributes encrypted traffic uniformly. Decoy servers don't just sit idle — they actively mimic the real server's behavior, generating convincing logs and responses to waste attacker time and resources. Meanwhile, messages are protected by two layers of encryption: end-to-end AES-256-GCM on the client side, and a second serverside re-encryption pass before storage. Docker containerization enables rapid server rotation with zero downtime. The result is a messaging framework that significantly reduces reconnaissance success, frustrates targeted attacks, and maintains 99.8% delivery reliability with only a ~12ms latency overhead. Key Words: Moving-Target Defense, Secure Messaging, Decoy Servers, AES-256-GCM Encryption, Server Fingerprinting, Load Balancing, Docker, Honeypots, Cybersecurity, Traffic Obfuscation
1. INTRODUCTION Messaging applications have become the backbone of modern communication from personal conversations to corporate strategy sessions to sensitive government exchanges. Yet beneath their friendly interfaces lies a growing security crisis. Attackers have grown more patient and methodical, spending weeks profiling server behavior before ever launching an attack. When the target is a static server with a known address and predictable response patterns, that patience pays off. Traditional security measures firewalls, intrusion detection systems, even end-to-end encryption do an excellent job of protecting message content but leave the infrastructure itself dangerously exposed. An attacker who cannot read your messages can still identify your server, map your network, and bring your service to its knees with a DDoS attack or a precise server-side intrusion. This paper proposes a fundamentally different approach. Instead of hardening a fixed target, we make the target itself a moving one. Inspired by military doctrine, Moving-Target Defense (MTD) continuously shifts the system's attack surface, turning the attacker's reconnaissance advantage into a liability. Our architecture pairs one real message-processing server with multiple intelligent decoy servers behind a load balancer, so that from the outside, all servers look identical. The real server rotates periodically among the available nodes, and decoys generate convincing fake activity to keep attackers guessing. The following sections walk through the problem in depth, the shortcomings of existing solutions, the detailed design of our proposed system, and the real-world scenarios where this architecture provides the most value.
2. PROBLEM STATEMENT Most messaging systems are built on static, centralized servers a design that made sense when cyber threats were simpler but is increasingly inadequate today. Once an attacker identifies a server's address and studies its response patterns, the entire system becomes a sitting target. End-to-end encryption protects the content of messages, but it does nothing to hide the fact that a specific server at a specific address is processing them. Consider the attack chain: a patient adversary begins with passive reconnaissance, observing traffic patterns and response timings to fingerprint the real backend server. Once identified, that server becomes the focus of targeted attacks DDoS to disrupt the service, MITM attempts to intercept key exchanges, or direct exploitation of server-side vulnerabilities. Even without breaking the encryption, an attacker who knows where to look can harvest metadata revealing who is talking to whom, when, and how often.
© 2026, IRJET
|
Impact Factor value: 8.315
|
ISO 9001:2008 Certified Journal
|
Page 79