mirror of
https://github.com/Aryma-f4/Ares-mythic.git
synced 2026-06-12 23:34:12 +00:00
This is a major rename of the project directory structure from "hummer" to "ares". All project files including source code, headers, resources, build files, and documentation have been moved to the new directory while maintaining their content. The change includes updating Visual Studio solution and project files to reflect the new directory name.
12 lines
521 B
C++
12 lines
521 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
// Persistence functions
|
|
bool install_persistence(const std::wstring& executablePath);
|
|
bool check_persistence(const std::wstring& executablePath);
|
|
bool install_registry_persistence(const std::wstring& executablePath);
|
|
bool install_service_persistence(const std::wstring& executablePath);
|
|
bool install_scheduled_task(const std::wstring& executablePath);
|
|
bool install_wmi_persistence(const std::wstring& executablePath);
|
|
bool install_startup_persistence(const std::wstring& executablePath); |