Comments
On 2IA7A8E6A7How to prevent hacks?, 11 days ago
+7

You could randomize your base to make it unpredictable

mt19937 rng(chrono::steady_clock::now().time_since_epoch().count() ^ (uintptr_t)(new char));
base = uniform_int_distribution<>(1e8, 1e9)(rng);