Bitsum Community Forum

General Category => Process Lasso => Topic started by: arcanum on June 02, 2025, 08:17:27 AM

Title: Process Lasso as a security software
Post by: arcanum on June 02, 2025, 08:17:27 AM
Hello,
Is it possible to block, something like powershell.exe, wscript.exe etc,so called lolbins via PL?
I've done local group policy rule, something like this:
%LSYSTEMDRIVE%\*\*.vbs
Which should prevent any vbs running systemwide, however i don't trust it(it can be reversed by a malware).
So it there a way in PL to block powershell.exe
Title: Re: Process Lasso as a security software
Post by: jacksoris on June 13, 2025, 02:51:57 AM
You can use path rules if you want more control, though this is slightly less secure than publisher/file hash rules.
<Rule>
  <FileNameCondition>powershell.exe</FileNameCondition>
  <Action>DENY</Action>
</Rule>
Or you can deny specific paths like:
<PathRule Action="Deny">
  <Path Condition="Equals" Value="C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe"/>
</PathRule>