Simple Brawl Stars v25.107 server emulator written in Python

Simple Brawl Stars v25.107 server emulator written in Python. Requirements: Python 3.7 or higher tinydb Running the server In a terminal, type py main.py Configuring the client app To connect to your server, a patched client is required.Download this base APK (most likely won’t work on Android 10+) and change the IP in libgg.config.so Special thanks Client Help If you found a way to replace frida gadget (libgg.so) without any errors, please, text me in dm: https://t.me/shark01d GitHub View Github […]

Read more

Open source Brawl Stars server emulator for version 29 of the game

Open source Brawl Stars server emulator for version 29 of the game! (Remake) What’s working ? Battles Trophies in offline battles Power Play with Power Play points ChampionShip Home Brawlers from boxex All skins unlocked Gadgets and Star Powers Notifications Shop Special offers Boxes Gold and other resources PinPack Skins Club Join Leave Chat Update settings Bot commands …and much more! Prerequisites Run Server On Windows: Download Python 3.7 or newer version from official page. Download the server and extract […]

Read more

An easy-to-use library for emulating code in minidump files

Note: This is a work-in-progress prototype, please treat it as such. An easy-to-use library for emulating code in minidump files. Example The example below opens test.dmp (download a copy here), allocates some memory and calls the decryption function at 0x140001000 to decrypt the string at 0x140003000: from dumpulator import Dumpulator dp = Dumpulator(“test.dmp”, trace=True) temp_addr = dp.allocate(256) dp.call(0x140001000, [temp_addr, 0x140003000]) decrypted = dp.read_str(temp_addr) print(f”decrypted: ‘{

Read more

An emulated LED scoreboard for Major League Baseball in python

mlb-led-scoreboard-emulated An LED scoreboard for Major League Baseball. Displays a live scoreboard for your team’s game on that day. Be sure to check out the original repo, mlb-led-scoreboard, if you’d like to run this on a Rasperry Pi LED panel! Currently supported boards: 32×32 64×32 64×64 128×32 128×64 If you’d like to see support for another set of board dimensions, file an issue! Screenshots Installation Requirements You need Git for cloning this repo and PIP for installing the scoreboard software. […]

Read more