winmr-api/Services/Scanners/ScanTarget.cs

19 lines
472 B
C#
Raw Normal View History

2025-07-04 00:04:51 +03:00
/* This software is licensed by the MIT License, see LICENSE file */
/* Copyright © 2024-2025 Gregory Lirent */
2025-07-03 15:22:40 +03:00
namespace WebmrAPI.Services.Scanners
{
[Flags]
public enum ScanTarget : byte
{
Processes = 0x01,
MemoryRegions = 0x02,
Modules = 0x04,
Threads = 0x08,
2025-07-13 14:24:51 +03:00
Windows = 0x10,
2025-07-03 15:22:40 +03:00
ProcessDetails = MemoryRegions | Modules | Threads,
All = Processes | ProcessDetails
}
}