Skip to content

Instantly share code, notes, and snippets.

View emesare's full-sized avatar

Mason Reed emesare

View GitHub Profile
@emesare
emesare / leclaimer.js
Last active November 17, 2025 22:16
asset.party slot claimer for s&box. NO LONGER SUPPORTED
// ==UserScript==
// @name Le claimer
// @namespace http://tampermonkey.net/
// @version 0.3
// @description try to claim yourself access to a game that doesn't exist (its a hoax)
// @author ------
// @match https://asset.party/get/developer/preview
// @icon https://www.google.com/s2/favicons?sz=64&domain=asset.party
// @grant none
// ==/UserScript==
@emesare
emesare / create_contiguous_variables.py
Created August 17, 2025 19:47
Creating Multiple Instances of Type Without Array
# Courtesy of our LLM overlords
from binaryninja import *
def create_contiguous_variables(bv, addr):
"""
Creates a contiguous series of data variables of a specified type.
"""
# 1. Design the user interaction form
type_name_field = interaction.TextLineField("Enter Type Name (e.g., 'MyStruct')")
instance_count_field = interaction.IntegerField("Number of Instances")