Living off the land
Last updated
Was this helpful?
Last updated
Was this helpful?
This is a work-in-progress. It's indicated with the 🛠️ emoji in the page name or in the category name
In the physical world, “living off the land” simply means to survive only by the resources that you can harvest from the natural land. There may be multiple reasons for doing this — perhaps you want to get “off the grid,” or maybe you have something or someone to hide from. Or maybe you just like the challenge of being self-sufficient.
In the technology world, “living off the land” (LotL) refers to attacker behavior that uses tools or features that already exist in the target environment. ()
There are multiple "living off the land" techniques that can be used to force authentications, to capture hashes, or to relay authentications. In order to use those techniques, testers need to have an initial access to "the land", i.e. the tools or features the technique uses.
Those techniques will usually generate outgoing traffic on SMB or HTTP, hence requiring the attacker to set up an SMB or HTTP server to or the authentication (e.g. using tools like (Python), (Powershell), (Python) or (Powershell)).
On Windows machines, cmdlets like net
or dir
can be used to make the machine access a remote resource, hence making it authenticate. This leads to an outgoing traffic using SMB.
The rpcping command can also be used to trigger an authentication. The perk of this technique is that the auth won't carry a signing negotiation flag, hence allowing for relays
On MS-SQL (Microsoft SQL) servers, the EXEC method can be used to access a remote SMB share. This leads to an outgoing traffic using SMB.
On Windows machines, the file explorer can be used to access remote resources like SMB shares by supplying its UNC path (i.e. \\$ATTACKER_IP\something
) in the research bar. This leads to an outgoing traffic using SMB.
Internet browsers can access HTTP servers by supplying their URL (i.e. http://$IP:$PORT/something
) in the research bar. This technique is rarely used as it can pop up a prompt. This leads to an outgoing traffic using HTTP.
SMB shares can be trapped with shortcut files that will automatically be handled by Windows' file explorer (e.g. a URL shortcut using an icon file located on a remote SMB share will be parsed by the file explorer that will request the icon file and authenticate if necessary). This leads to an outgoing traffic using SMB.
An LNK shortcut using an icon file located on a remote SMB share will be parsed by the file explorer that will request the icon file and authenticate if necessary.
HTML documents can be crafted (or injected with content when successfully exploiting an HTML injection attack such as an ) in way that could make browsers authenticate when accessing a remote resource. This leads to an outgoing traffic using SMB.
Shares an account has WRITE privileges over can be mapped with (Python).
The (Python) tool can be used to generate multiple file types at once (lnk, scf, url, docx, xslx, htm, xml, pdf, ...).
Shortcuts with the .lnk extension have a lot of beneficial properties when it comes to stealth; from the Windows setting to show or hide file extensions. Even when “hide known file extensions” is disabled, explorer.exe will only show the name, allowing us to let it end in “.jpeg”. A major downside is that they only allow 1024 characters for the whole command they execute. ()
(Python) is a great tool to generate malicious LNK shortcuts. They can be set with a remote icon file to generate outgoing SMB traffic and authentications but can also be set to execute commands when opened (i.e. double-clicked).
LNK files can be mixed with some VBA:
LNK files can be mixed with some HTA:
(Python) can be used to automatically push LNK files to a writeable share.