-
Notifications
You must be signed in to change notification settings - Fork 1
/
driver.cpp
127 lines (102 loc) · 3.28 KB
/
driver.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#include "driver.h"
#include "server.h"
// Link to winsock.
#pragma comment(lib, "Ws2_32")
// Send request packet and wait for completion.
static bool send_packet(
const SOCKET connection,
const Packet& packet,
uint64_t& out_result)
{
Packet completion_packet{ };
if (send(connection, (const char*)&packet, sizeof(Packet), 0) == SOCKET_ERROR)
return false;
const auto result = recv(connection, (char*)&completion_packet, sizeof(Packet), 0);
if (result < sizeof(PacketHeader) ||
completion_packet.header.magic != packet_magic ||
completion_packet.header.type != PacketType::packet_completed)
return false;
out_result = completion_packet.data.completed.result;
return true;
}
static uint32_t copy_memory(
const SOCKET connection,
const uint32_t src_process_id,
const uintptr_t src_address,
const uint32_t dest_process_id,
const uintptr_t dest_address,
const size_t size)
{
Packet packet{ };
packet.header.magic = packet_magic;
packet.header.type = PacketType::packet_copy_memory;
auto& data = packet.data.copy_memory;
data.src_process_id = src_process_id;
data.src_address = uint64_t(src_address);
data.dest_process_id = dest_process_id;
data.dest_address = uint64_t(dest_address);
data.size = uint64_t(size);
uint64_t result = 0;
if (send_packet(connection, packet, result))
return uint32_t(result);
return 0;
}
void driver::Initialize()
{
WSADATA wsa_data;
WSAStartup(MAKEWORD(2, 2), &wsa_data);
}
void driver::DeInitialize()
{
WSACleanup();
}
SOCKET driver::connect()
{
SOCKADDR_IN address{ };
address.sin_family = AF_INET;
address.sin_addr.s_addr = htonl(server_ip);
address.sin_port = htons(server_port);
const auto connection = socket(AF_INET, SOCK_STREAM, 0);
if (connection == INVALID_SOCKET)
return INVALID_SOCKET;
if (connect(connection, (SOCKADDR*)&address, sizeof(address)) == SOCKET_ERROR)
{
closesocket(connection);
return INVALID_SOCKET;
}
return connection;
}
void driver::disconnect(const SOCKET connection)
{
closesocket(connection);
}
uint32_t driver::read_mem(
const SOCKET connection,
const uint32_t process_id,
const uintptr_t address,
const uintptr_t buffer,
const size_t size)
{
return copy_memory(connection, process_id, address, GetCurrentProcessId(), buffer, size);
}
uint32_t driver::write_mem(
const SOCKET connection,
const uint32_t process_id,
const uintptr_t address,
const uintptr_t buffer,
const size_t size)
{
return copy_memory(connection, GetCurrentProcessId(), buffer, process_id, address, size);
}
uint64_t driver::get_process_base_address(const SOCKET connection, const uint32_t process_id)
{
Packet packet{ };
packet.header.magic = packet_magic;
packet.header.type = PacketType::packet_get_base_address;
auto& data = packet.data.get_base_address;
data.process_id = process_id;
uint64_t result = 0;
if (send_packet(connection, packet, result))
return result;
return 0;
}