Glossary / Security

Living off the Land (LotL)

A stealthy cyberattack technique where intruders use legitimate, pre-installed system tools to conduct malicious activities, blending in with normal administrative traffic to evade detection.

Hiding in Plain Sight

Why bring a custom virus that might get caught by antivirus, when the computer already has tools that can do the same damage? "Living off the Land" is the digital equivalent of a burglar using the homeowner's own ladder to break in.

How It Works

Attackers use what are known as LOLBins (Living Off the Land Binaries). These are binaries supplied by the operating system that are normally used for legitimate purposes but can be abused.

Common LOLBins

Why Traditional Security Fails

Legacy antivirus looks for "bad files." In a LotL attack, there is no bad file. The attacker is running `powershell.exe`, which is a trusted, signed Microsoft binary. To the antivirus, this looks like a system administrator doing their job.

Detection & Mitigation

Since you can't block PowerShell (it would break IT operations), you must monitor how it is used.

Alterra's Perspective

We design our defense software assuming LotL attacks will happen. We employ strict constrained language modes for scripting engines and enforce Just-Enough-Administration (JEA) principles to limit what built-in tools can do, even if an attacker gains access to them.

Related Terms