Skip to content

Instantly share code, notes, and snippets.

@AlexeyTolstopyatov
Created September 20, 2024 04:07
Show Gist options
  • Save AlexeyTolstopyatov/d0e2d02c4b4fa0c2db8e60e6b3bd0a39 to your computer and use it in GitHub Desktop.
Save AlexeyTolstopyatov/d0e2d02c4b4fa0c2db8e60e6b3bd0a39 to your computer and use it in GitHub Desktop.
Important of Windows Processes.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Security.Principal;
using System.Runtime.InteropServices;
using System.Diagnostics;
namespace criticalProcess
{
internal class Program
{
/// (C) Толстопятов Алексей А.
///
/// Что здесь происходит?
/// RtlSetProcessIsCritical (ntdll.dll) -- Функция из Native Windows API,
/// Отмечает запущенный процесс как Критически важный. требует повышенных привелегий.
///
/// 544 - Тип администратора. (WindowsBuiltInRole.Administrator = 544)
///
/// Приложение не сработает, если не предоставить права Администратора.
/// В следующий раз укажу, как завершить процесс не имея привелегий
[DllImport("ntdll.dll")]
public static extern long RtlSetProcessIsCritical(UInt32 v1, UInt32 v2, UInt32 v3);
static void Main(string[] args)
{
//bool isAdmin = WindowsIdentity.GetCurrent().Groups
// .Select(
// group =>
// (SecurityIdentifier)group.Translate(typeof(SecurityIdentifier))
// )
// .Any(
// sid =>
// sid ==
// new SecurityIdentifier(
// WellKnownSidType.AccountAdministratorSid, null)
// ); // ArgumentNullException throws
WindowsIdentity ident = WindowsIdentity.GetCurrent();
WindowsPrincipal principal = new WindowsPrincipal(ident);
if (principal.IsInRole(544))
{
Process.EnterDebugMode();
Console.Write(RtlSetProcessIsCritical(1, 0, 0));
Process.GetCurrentProcess().Kill();
}
Console.WriteLine("Exited.");
Console.ReadLine();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment