Skip to content

Instantly share code, notes, and snippets.

View Dastano's full-sized avatar

Feylinchen Dastano

  • 14:41 (UTC +02:00)
View GitHub Profile
@Dastano
Dastano / sig.lua
Created July 25, 2025 15:31 — forked from Buckminsterfullerene02/sig.lua
Created by LongerWarrior, this is a very reliable signature bypass pattern for a bitfix, works only if game uses aes encryption and sigs
local patch = function(ctx, address)
ctx[address] = 0xC3
end
local readint = function(ctx, i)
if (ctx[i+3] >> 7) == 1 then
local val = ctx[i] | (ctx[i+1] << 8) | (ctx[i+2] << 16) | (ctx[i+3] << 24)
return val - 0x100000000
else
return ctx[i] | (ctx[i+1] << 8) | (ctx[i+2] << 16) | (ctx[i+3] << 24)
@Dastano
Dastano / sig.lua
Created July 25, 2025 15:31 — forked from Buckminsterfullerene02/sig.lua
Created by LongerWarrior, this is a very reliable signature bypass pattern for a bitfix, works only if game uses aes encryption and sigs
local patch = function(ctx, address)
ctx[address] = 0xC3
end
local readint = function(ctx, i)
if (ctx[i+3] >> 7) == 1 then
local val = ctx[i] | (ctx[i+1] << 8) | (ctx[i+2] << 16) | (ctx[i+3] << 24)
return val - 0x100000000
else
return ctx[i] | (ctx[i+1] << 8) | (ctx[i+2] << 16) | (ctx[i+3] << 24)
{
"success": true,
"credits_left": 99,
"rate_limit_left": 99,
"person": {
"publicIdentifier": "rickvanbeem",
"linkedInIdentifier": "ACoAAAFOyWMB-4RoWHfSHvIlTRqB_gOArxTWBE8",
"memberIdentifier": "21940579",
"linkedInUrl": "https://www.linkedin.com/in/rickvanbeem",
"firstName": "Rick",