19 lines
472 B
C#
19 lines
472 B
C#
/* This software is licensed by the MIT License, see LICENSE file */
|
|
/* Copyright © 2024-2025 Gregory Lirent */
|
|
|
|
namespace WebmrAPI.Services.Scanners
|
|
{
|
|
[Flags]
|
|
public enum ScanTarget : byte
|
|
{
|
|
Processes = 0x01,
|
|
MemoryRegions = 0x02,
|
|
Modules = 0x04,
|
|
Threads = 0x08,
|
|
Windows = 0x10,
|
|
|
|
ProcessDetails = MemoryRegions | Modules | Threads,
|
|
All = Processes | ProcessDetails
|
|
}
|
|
}
|