This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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") |