From 10a80feddee4cf0b5ed2a29d0ff46c457a65d608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20K=C3=BCppers?= <148886858+dkx-daniel@users.noreply.github.com> Date: Wed, 31 Jul 2024 11:20:28 +0200 Subject: [PATCH] Fixes OS version command according to documentation --- ExploitRemotingService/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ExploitRemotingService/Program.cs b/ExploitRemotingService/Program.cs index ac4b587..e6ec84e 100644 --- a/ExploitRemotingService/Program.cs +++ b/ExploitRemotingService/Program.cs @@ -643,7 +643,7 @@ private static void ExecuteCommand(IRemoteClass c) case "user": Console.WriteLine("User: {0}", c.GetUsername()); break; - case "osver": + case "ver": Console.WriteLine("OS: {0}", c.GetOSVersion()); break; default: