Giter VIP home page Giter VIP logo

htpspy's Introduction

HttpSpy

A powerful and highly efficient network debugging tool for Roblox (and exploits)

Please don't use this on any commerical scripts, you'll most likely get yourself detected (lol)

Alert

This project is no longer maintained (and won't be until I finish some other stuff), if you'd like to make a pull request feel free to do so and I might accept it

Usage

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
    API = true, -- Enables the script API
    BlockedURLs = {} -- Blocked urls
});

Features

  • Request Reconstructing
  • Syntax Highlighting
  • WebSocket support
  • Lightweight
  • Auto JSON Decoding
  • Easy to use
  • Script API
  • Supported on multiple exploits (including S^X and SW)

Preview

API

HttpSpy:HookSynRequest(<string url>, <function hook>); -- hook is called with <<table> Response>
HttpSpy:BlockUrl(<string url>);
HttpSpy:WhitelistUrl(<string url>);
HttpSpy:ProxyHost(<string host>, <string proxy>);
HttpSpy:RemoveProxy(<string host>);
HttpSpy:UnHookSynRequest(<string url>);
HttpSpy.OnRequest<event>(<table request>);

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
    API = true, -- Enables the script API
    BlockedURLs = {} -- Blocked urls
});

HttpSpy.OnRequest:Connect(function(req) 
    warn("request made:", req.Url);    
end);

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

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

HttpSpy:UnHookSynRequest("https://httpbin.org/get");
HttpSpy:ProxyHost("httpbin.org", "google.com");

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

htpspy's People

Contributors

johnfkingzton avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.