LIEF: Library to Instrument Executable Formats Version 2.0.0
Loading...
Searching...
No Matches
injector.hpp
Go to the documentation of this file.
1/* Copyright 2017 - 2026 R. Thomas
2 * Copyright 2017 - 2026 Quarkslab
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef LIEF_RUNTIME_WIN_INJECTOR_H
17#define LIEF_RUNTIME_WIN_INJECTOR_H
18
19#include "LIEF/errors.hpp"
20#include "LIEF/visibility.h"
21
22#include <unordered_map>
23#include <ostream>
24#include <string>
25
26
27namespace LIEF::runtime::windows {
28
32 std::string target_path;
33
35 std::string args;
36
38 std::string library;
39
42 std::unordered_map<std::string, std::string> env;
43
46 bool validate() const;
47
48 operator bool() const {
49 return validate();
50 }
51
52 std::string to_string() const;
53
54 friend LIEF_API std::ostream& operator<<(std::ostream& os,
55 const injection_context_t& ctx) {
56 os << ctx.to_string();
57 return os;
58 }
59};
60
67
68}
69
70
71#endif
Opaque structure that is used by LIEF to avoid writing result<void> f(...). Instead,...
Definition errors.hpp:119
Definition windows/Host.hpp:24
ok_error_t inject_spawn(const injection_context_t &ctx)
Spawn the target described by the given injection context and inject the associated library before th...
Describes how to spawn a new process and inject a library into it.
Definition injector.hpp:30
friend std::ostream & operator<<(std::ostream &os, const injection_context_t &ctx)
Definition injector.hpp:54
std::string args
Command-line arguments passed to the spawned process.
Definition injector.hpp:35
bool validate() const
Check whether the context is consistent (required paths filled-in and readable).
std::string library
Absolute path to the library (DLL) that should be injected.
Definition injector.hpp:38
std::unordered_map< std::string, std::string > env
Environment variables to set in the spawned process. If left empty, the current process environment i...
Definition injector.hpp:42
std::string target_path
Absolute path to the target executable to spawn.
Definition injector.hpp:32
#define LIEF_API
Definition visibility.h:45