HttpSpy | Supports Synapse & Script-Ware

MADE BY d s f

FEATURE:

  • Request Reconstructing
  • Syntax Highlighting
  • WebSocket support
  • Lightweight
  • Auto JSON Decoding
  • Easy to use
  • Script API
  • Supported on multiple exploits (including S^X and SW)
  • .
  • NOTE:
  • A powerful and highly efficient network debugging tool for Roblox (and exploits)

SCRIPT:

Be sure to execute the HttpSpy before the target script!:

loadstring(game:HttpGet("https://raw.githubusercontent.com/NotDSF/HttpSpy/main/init.lua"))({
    AutoDecode = true, -- Automatically decodes JSON
    Highlighting = true, -- Highlights the output
    SaveLogs = true, -- Save logs to a text file
    CLICommands = true, -- Allows you to input commands into the console
    ShowResponse = true, -- Shows the request response
    BlockedURLs = {} -- Blocked urls
});

API:

HttpSpy:HookSynRequest(<string url>, <function hook>); -- hook is called with <<table> Response>
HttpSpy:BlockUrl(<string url>);
HttpSpy:WhitelistUrl(<string url>);

EXAMPLE:

local HttpSpy = loadstring(game:HttpGet("https://raw.githubusercontent.com/NotDSF/HttpSpy/main/init.lua"))({
    AutoDecode = true, -- Automatically decodes JSON
    Highlighting = true, -- Highlights the output
    SaveLogs = true, -- Save logs to a text file
    CLICommands = true, -- Allows you to input commands into the console
    ShowResponse = true, -- Shows the request response
    BlockedURLs = {} -- Blocked urls
});

HttpSpy:HookSynRequest("https://httpbin.org/get", function(response) 
    response.Body = "hi";
    return response;
end);

print(syn.request({ Url = "https://httpbin.org/get" }).Body);

⚠️ Warning: Do not download any extensions or anything other than .txt/.lua file, because script will download only in .txt/.lua format or It will redirect you to a pastebin link.

📋 Notice: If you find any of the scripts patched or not working, please report it to Forever4D through Discord. The script will be removed or marked as patched!