mirror of
https://github.com/28Zaaky/khaos-c2
synced 2026-07-22 12:18:04 +00:00
12 lines
238 B
C
12 lines
238 B
C
#pragma once
|
|
#include <windows.h>
|
|
|
|
typedef enum {
|
|
PERSIST_REGISTRY = 0,
|
|
PERSIST_SCHTASK = 1,
|
|
} persist_method_t;
|
|
|
|
int persist_install(persist_method_t method);
|
|
int persist_remove(persist_method_t method);
|
|
int persist_auto(void);
|