Giter Site home page Giter Site logo

game-hax / roblox-exploit-api Goto Github PK

View Code? Open in Web Editor NEW
26.0 6.0 7.0 86 KB

A C# Roblox Exploiting API for the UWP distribution of the game. Its basically WeAreDevs API but it bypasses Byfron.

License: MIT License

C# 100.00%
csharp dll roblox roblox-cheat roblox-cheats roblox-executor roblox-hack byfron-bypass byfron educational-purposes

roblox-exploit-api's Introduction

this thing is patched and i wont update it, maybe ill make a v2 in the future

Roblox Exploiting API

⚠️ This project are for educational purposes only, if you do use this on Roblox and you get banned, that is your fault as you are breaking their Terms of Service.

This is a Roblox exploiting API based off the WeAreDevs API that supports the UWP version of Roblox! There is no key system and it auto-updates to the latest version!

tldr: wearedevs api but it bypasses byfron

Getting started

To use this you need to use the UWP (Universal Windows Platform) version of the Roblox app which doesn't have Byfron. To do this, get Roblox from the Microsoft store!

How to create your own exploit

⚠️ Educational purposes only, video tutorial soon!

  1. Create a new Visual Studios project. I recommend choosing the Windows Form App (.NET Framework)

image

  1. Add the exploit API as a reference

image

image

  1. Start using the API! Example:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Hovac_API;

namespace TutorialExploit
{
    public partial class Form1 : Form
    {
        ExploitAPI exploitAPI = new ExploitAPI();

        public Form1()
        {
            InitializeComponent();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            exploitAPI.LaunchExploit(); // injects into roblox
        }

        private void button1_Click(object sender, EventArgs e)
        {
            exploitAPI.SendLuaScript(richTextBox1.Text); // runs script from text box
        }
    }
}

image

Your exploit will now work and auto-updates to the lastest version!

Attribution

The code for the actual injecting wasn't done by me.

The actual important DLLs are taken from WeAreDev's CDN, however for some reason they haven't updated WeAreDevs API to do this so I just did it myself.

You can complain this project is skidded but thats the point, its just a UWP port for the WeAreDevs API.

roblox-exploit-api's People

Contributors

mov-ebx avatar plopperoni avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

roblox-exploit-api's Issues

need an update to the campaign

we need to update this, the addresses are working but module and fluxteam_net_api.dll I couldn't find the module and fluxteam_net_api.dll since it is necessary that they are from the fluxus exploit and it does not distribute

module error

Iris and I found an error in the API and this is a module error, it could not load during injection and all we need to do is replace the non-working module with an updated module such as fluxus

Unable to inject (error)

When injecting using the API, I get the following error:

An unhandled exception of type 'System.Net.WebException' occurred in System.dll
The underlying connection was closed: An unexpected error occurred on a send.

Issue started two days ago, ever since Roblox updated. Version 1.0.0 worked fine

dose not work

i have added all the stuff that is needed but when i try to inject ir just erros out and nothing happends

Patched ?

when i inject, i got message box "Could not download the latest version! Did your firewall block us ?" and the second message box "Downloaded Hovac_API.dll udpate. Updates will load when you next restart this exploit"

any suggestions ?

Executing does not work

I'm pretty sure it injects but for some reason it cannot execute scritps. I tried the print("test") and nothing poped up in the roblox console.
Here is my script, it's a very quickly made console executor:

using System;
using Hovac_API;

namespace ConsoleApp2
{
class Program
{
static void Main()
{
ExploitAPI api = new ExploitAPI();
bool isInjected = false;
string script = "";
while (true)
{
if (script == "!!end")
{
break;
}

            if (isInjected)
            {
                api.SendLuaScript(script);
            }
            else
            {
                Console.WriteLine("Not Injected. Press 1 to inject or 0 to cancel.");
                string option = Console.ReadLine();

                if (option == "1")
                {
                    api.LaunchExploit();
                    isInjected = true;
                    Console.WriteLine("Successfully injected.");
                }
                else
                {
                    Console.WriteLine("Injection canceled.");
                }


            }
            Console.Write("Enter your Lua script (type '!!end' to exit): ");
            script = Console.ReadLine();

        }
    }
}

}

Add saveinstance?

Would it be possible to add saveinstance to this api or not since it uses an external DLL?

isAPIAttached label

Can you add isAPIAttached label in example exploit? Or make an announcement when injected. It's just not always clear when the cheat was injected.

Error 0x8007000B

API gaves me Error 0x8007000B when trying to update injection status with ExploitAPI.isAPIAttached.

System.BadImageFormatException
HResult=0x8007000B
Message=Была сделана попытка загрузить программу, имеющую неверный формат. (Исключение из HRESULT: 0x8007000B)
Source=Hovac_API
StackTrace:
at Hovac_API.ExploitAPI.BasicInject.is_injected(IntPtr proc, Int32 pid, String path)
at Hovac_API.ExploitAPI.isAPIAttached()
at cheat.Form1.button3_Click(Object sender, EventArgs e) in C:\Users\Home\Desktop\RobloxCheat\Legacy\cheat\cheat\Form1.cs:line 56
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ButtonBase.WndProc(Message& m)
at System.Windows.Forms.Button.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
at cheat.Program.Main() in C:\Users\Home\Desktop\RobloxCheat\Legacy\cheat\cheat\Program.cs:line 19

doesent inject

worked for a while then suddenly completely stopped working doesent even inject into the game no errors either

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.