Skip to content

gitwab/Wineblox-executor

 
 

Repository files navigation

Wineblox Executor

A functional Roblox executor for Linux using Wine

License: Unlicense Platform: Linux Language: C

Stort hiere

# Clone and build
git clone https://github.com/gitwab/Wineblox-executor.git
cd Wineblox-executor
chmod +x build.sh
./build.sh

# Run
sudo ./injector sober

What it can do for now

  • Inject basic scripts
  • Could be unstable

Requirements (yes)

  • Linux OS (Ubuntu/Debian, Fedora, Arch)
  • Wine (for running ROBLOX)
  • GCC compiler
  • Lua 5.1 development libraries
  • GTK4 (optional, for GUI)
  • libcurl (optional, for Script Hub)

Installation

Easy Way (Recommended)

git clone https://github.com/gitwab/Wineblox-executor.git
cd Wineblox-executor
chmod +x build.sh
./build.sh

Manual Build

make check-deps      # Verify dependencies
make                 # Build all components

See INSTALL.md for detailed instructions.

Usage

Basic Injection

# Start ROBLOX on Wine
WINEPREFIX=~/.wine wine ~/.wine/drive_c/Program\ Files/Roblox/Versions/*/RobloxPlayerBeta.exe

# In another terminal, inject the executor
sudo ./injector sober

Advanced Usage

# Specify PID manually
sudo ./injector <PID> ./sober_test_inject.so

# Custom library path
sudo ./injector sober /path/to/library.so

# Launch UI
./atingle_enhanced

Troubleshooting

Issue Solution
PTRACE_ATTACH failed: Operation not permitted Run with sudo or check ptrace_scope
Process 'sober' not found Ensure ROBLOX is running before injection
Cannot find libc.so.6 System libraries may be inaccessible
Build fails on dependency Check INSTALL.md for your distro

See INSTALL.md#troubleshooting for more detailed solutions.

Build Targets

make                    # Build everything
make check-deps         # Verify dependencies
make atingle_enhanced   # Enhanced UI with Script Hub
make injector           # Injector only
make sober_test_inject.so  # Library only
make clean              # Remove built files
make help               # Show all targets

To know

  • Requires elevated privileges (sudo) to attach to processes
  • May be detected by anti-cheat systems
  • Only use on systems you own or have explicit permission
  • Intended for educational and authorized testing purposes only

Components

Component Type Purpose
Injector.c Source ptrace-based process injector
injected_lib.c Source Lua runtime injected into ROBLOX
AtingleUI_Enhanced.c Source GTK4 graphical interface
Makefile Build Compilation rules and targets
build.sh Script Automated build wrapper

Contributing

Found a bug or have a feature request?

License

This project is released under the Unlicense - ye

Credits

  • Based on AtingleExecutor
  • ptrace injection technique inspired by reverse engineering community
  • Lua integration for ROBLOX scripting

About

ROBLOX executor for Linux

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • C 82.0%
  • Lua 7.4%
  • Shell 5.4%
  • Makefile 5.2%