-- AshLabs.lua -- by o8v3 and hook.op :3 local req = syn and syn.request or request or http_request or http and http.request if not req then warn("no request") return end local old_request = req function hook_request(data) local url = (data.Url or data.URL or data.url or ""):lower() local method = (data.Method or data.method):upper() if url:find("login") and method == "POST" then -- this auth was weird to crack since they had an loadtsring anti tamper which totaly didnt work on volcano so 08v3 did it on delta and worked print("layer 1 :3 ") return { StatusMessage = "", Success = true, StatusCode = 200, Body = game:GetService("HttpService"):JSONEncode({ success = true, message = "Login successful", username = game.Players.LocalPlayer.Name, login_time = os.date("!%Y-%m-%dT%H:%M:%S",os.time())..".000Z", expiration_time = "69420-09-28T01:10:55.063Z", session_duration_hours = {}, processing_time_ms = 249 }) } end if url:find("premium.vercel.app") and method == "GET" then print("layer 2 :p") return { StatusMessage = "", Success = true, StatusCode = 200, Body = game:GetService("HttpService"):JSONEncode({ status = "error", message = "Subscription expired" }) } end if url:find("user") and method == "GET" then print("found user check :ppp") return { StatusMessage = "", Success = false, StatusCode = 404, Body = game:GetService("HttpService"):JSONEncode({ username = game.Players.LocalPlayer.Name, remaining_time = 0, status = "User not found" }) } end return old_request(data) end if syn then syn.request = hook_request end if http_request then http_request = hook_request end if request then request = hook_request end if http and http.request then http.request = hook_request end hookfunction(game.RbxAnalyticsService.GetClientId, function() return "08v3hookop" end)