GuiC_AYAY

ff

Mar 19th, 2025 (edited)
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. getgenv().request = function(options)
  2. if shared.antilogger and urlblockcheck(options.Url) then
  3. warn("[ StealthKill.GG ]: A script tried to get your IP; URL: ", options.Url)
  4. return protectedr
  5. end
  6. if options.Headers then
  7. options.Headers["User-Agent"] = "Stealkill"
  8. else
  9. options.Headers = {["User-Agent"] = "Stealkill"}
  10. end
  11. local response = oldr(options)
  12. if shared.httpspy then
  13. local body = options.Body or ""
  14. print("[ HTTPSPY ]:\nUrl: " .. options.Url ..
  15. "\nMethod: " .. options.Method ..
  16. "\nBody: " .. body ..
  17. "\nHeaders: " .. tostring(game:GetService("HttpService"):JSONEncode(options.Headers))
  18. )
  19. end
  20. if shared.antilogger and response and urlblockcheck(options.Url) then
  21. response.Body = protectedr.Body
  22. end
  23. if shared.httpspy then
  24. print("[ HTTPSPY X2 ]: Response:\nStatusCode: " .. tostring(response.StatusCode) ..
  25. "\nStatusMessage: " .. tostring(response.StatusMessage) ..
  26. "\nSuccess: " .. tostring(response.Success) ..
  27. "\nBody: " .. tostring(response.Body) ..
  28. "\nHeaders: " .. tostring(game:GetService("HttpService"):JSONEncode(response.Headers)) ..
  29. "-\n\n"
  30. )
  31. end
  32. return response
  33. end
Advertisement
Add Comment
Please, Sign In to add comment