-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathobfuscator.hpp
276 lines (212 loc) · 7.57 KB
/
obfuscator.hpp
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
#ifndef OBFUSCATOR_HPP
#define OBFUSCATOR_HPP
#include <type_traits>
#include <utility>
#define COMPILE_TIME_SEQUENCE
#define OBFS_FINITE_STATE_MACHINE
#define COMPILE_TIME_RANDOM
#define MAKE_RAND_VAL(MOD) obfs::RAND_VAL<__LINE__, MOD>
#define OBFS_STRING
#define MAKE_STRING(Var, String, ...) constexpr auto Var = obfs::make_string<__VA_ARGS__>(String);
namespace obfs {
template <typename T, T Val>
struct TypeVal {
using value_type = T;
constexpr static T value = Val;
};
struct Nothing {};
template <typename T, T Val, T... Others>
struct Sequence {
using value = TypeVal<T, Val>;
using next = Sequence<T, Others...>;
constexpr static std::size_t size = 1 + sizeof...(Others);
template <std::size_t Idx>
using index = std::conditional_t<Idx == 0, value, typename next::template index<Idx - 1>>;
};
template <typename T, T Val>
struct Sequence<T, Val> {
using value = TypeVal<T, Val>;
constexpr static std::size_t size = 1;
template <std::size_t Idx>
using index = std::conditional_t<Idx == 0, value, Nothing>;
};
template <typename T, typename... Ts>
struct TypeSeq {
using type = T;
using next = TypeSeq<Ts...>;
constexpr static std::size_t size = 1 + sizeof...(Ts);
template <std::size_t Idx>
using index = std::conditional_t<Idx == 0, type, typename next::template index<Idx - 1>>;
};
template <typename T>
struct TypeSeq<T> {
using type = T;
constexpr static std::size_t size = 1;
template <std::size_t Idx>
using index = std::conditional_t<Idx == 0, type, Nothing>;
};
template <std::size_t Val, std::size_t... Others>
struct MinVal {
constexpr static std::size_t value =
Val < MinVal<Others...>::value ? Val : MinVal<Others...>::value;
};
template <std::size_t Val>
struct MinVal<Val> {
constexpr static std::size_t value = Val;
};
template <typename... T>
struct SeqPack {
constexpr static std::size_t size = MinVal<T::size...>::value;
template <std::size_t Idx, typename U>
using getter = typename U::template index<Idx>;
template <std::size_t Idx>
using index = TypeSeq<getter<Idx, T>...>;
};
struct Pass {};
template <typename IfAllPass, typename T, typename... Ts>
struct First {
using type = std::conditional_t<
std::is_same_v<T, Pass>,
typename First<IfAllPass, Ts...>::type,
T>;
};
template <typename IfAllPass, typename T>
struct First<IfAllPass, T> {
using type = std::conditional_t<
std::is_same_v<T, Pass>,
IfAllPass,
T>;
};
}
namespace obfs {
void FreeAction() {}
template <typename Event, typename State, void(*Action)() = FreeAction>
struct Next {
using event = Event;
using state = State;
constexpr static void(*action)() = Action;
};
struct None {};
template <typename State, typename... Nexts>
struct Stage {
using state = State;
template <typename NextInfo, typename Event>
using act = std::conditional_t<
std::is_same_v<typename NextInfo::event, Event>, NextInfo, Pass>;
template <typename Event>
using next = typename First<None, act<Nexts, Event>...>::type;
};
template <typename Stage_, typename Event>
struct next_stage {
using type = typename Stage_::template next<Event>;
};
template <typename Event>
struct next_stage<None, Event> {
using type = None;
};
template <typename State>
struct action_invoker {
static auto action() {
State::action();
return typename State::state{};
}
};
template <>
struct action_invoker<None> {
static auto action() {
return None{};
}
};
template <typename... Specs>
struct StateMachine {
template <typename State, typename StageT>
using filter = std::conditional_t<
std::is_same_v<typename StageT::state, State>, StageT, Pass>;
template <typename State>
using find = typename First<None, filter<State, Specs>...>::type;
template <typename State, typename Event>
using next_t = typename next_stage<find<State>, Event>::type;
template <typename State, typename Event>
static auto run(State state, Event event) {
using next_state = next_t<std::decay_t<State>, std::decay_t<Event>>;
return action_invoker<next_state>::action();
}
};
}
namespace obfs {
using size_t = decltype(sizeof(void*));
constexpr char TIME[] = __TIME__;
constexpr int digit(char c) {
return c - '0';
}
constexpr size_t SEED = digit(TIME[7]) +
digit(TIME[6]) * 10 +
digit(TIME[4]) * 60 +
digit(TIME[3]) * 600 +
digit(TIME[1]) * 3600 +
digit(TIME[0]) * 36000;
template <size_t Seed, size_t Idx>
struct Xorshiftplus {
using prev = Xorshiftplus<Seed, Idx - 1>;
constexpr static size_t update() {
constexpr size_t x = prev::state0 ^ (prev::state0 << 23);
constexpr size_t y = prev::state1;
return x ^ y ^ (x >> 17) ^ (y >> 26);
}
constexpr static size_t state0 = prev::state1;
constexpr static size_t state1 = update();
constexpr static size_t value = state0 + state1;
};
template <size_t Seed>
struct Xorshiftplus<Seed, 0> {
constexpr static size_t state0 = Seed;
constexpr static size_t state1 = Seed << 1;
constexpr static size_t value = state0 + state1;
};
template <size_t Idx, size_t Mod>
constexpr size_t RAND_VAL = Xorshiftplus<SEED, Idx>::value % Mod;
}
namespace obfs {
using Encoder = char(*)(char);
using Decoder = char(*)(char);
template <std::size_t size, Encoder encoder, Decoder decoder>
class String {
public:
template <std::size_t... Idx>
constexpr String(char const* str,
std::index_sequence<Idx...>):
str{ encoder(str[Idx])... } {
// Do Nothing
}
inline char const* decode() const {
for (char& chr : str) {
chr = decoder(chr);
}
return str;
}
private:
mutable char str[size];
};
template <Encoder encoder, Decoder decoder, std::size_t size>
constexpr auto make_string(char const (&str)[size]) {
return String<size, encoder, decoder>(str, std::make_index_sequence<size>());
}
template <Encoder... encoders>
using encoder_seq = Sequence<Encoder, encoders...>;
template <Decoder... decoders>
using decoder_seq = Sequence<Decoder, decoders...>;
template <typename EncoderSeq, typename DecoderSeq>
using make_table = SeqPack<EncoderSeq, DecoderSeq>;
template <Encoder encoder, Decoder decoder>
using encoder_pair = Sequence<Encoder, encoder, decoder>;
template <typename... Seq>
using make_pair_table = TypeSeq<Seq...>;
template <typename Table, std::size_t size>
constexpr auto make_string(char const(&str)[size]) {
using pair = typename Table::template index<MAKE_RAND_VAL(Table::size)>;
constexpr Encoder encoder = pair::template index<0>::value;
constexpr Decoder decoder = pair::template index<1>::value;
return make_string<encoder, decoder>(str);
}
}
#endif