disassemble encrypted send_function_calls on proxy server

This commit is contained in:
Martin Michelsen
2022-08-11 23:57:34 -07:00
parent 3e14bc306f
commit 1fdf258e7f
2 changed files with 49 additions and 18 deletions
+1 -2
View File
@@ -258,11 +258,10 @@ void send_function_call(
while (!compressed_r.eof()) {
w.put_u32b(compressed_r.get_u32b() ^ crypt.next());
}
data = move(w.str());
} else {
crypt.encrypt(data.data(), data.size());
}
data = move(w.str());
}
}