Skip to content

Instantly share code, notes, and snippets.

View Murderhead's full-sized avatar
:octocat:
I may be slow to respond.

Murderhead

:octocat:
I may be slow to respond.
  • Germany, Dortmund
  • 04:31 (UTC +02:00)
View GitHub Profile
@carrot-c4k3
carrot-c4k3 / gspoc.txt
Last active July 17, 2024 01:57
Game Script native code execution PoC
// native code exec PoC via Game Script - @carrot_c4k3 (exploits.forsale)
//
// sample shellcode: mov rax, 0x1337; ret;
// drop your own shellcode inplace here
let shellcode = [0x48,0xC7,0xC0,0x37,0x13,0x00,0x00,0xC3]
// hex printing helper functions
let i2c_map = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F']
let c2i_map = {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9, 'A': 0xA, 'B': 0xB, 'C': 0xC, 'D': 0xD, 'E': 0xE, 'F': 0xF}
@JohnTheCoolingFan
JohnTheCoolingFan / lite_cfg.txt
Created November 13, 2023 03:42
EasyThreed K9 Marlin factory firmware configuration
######### MKS Robin Lite configuration #########
#-------------------------------------------------------------
#��ѡ��ֻ�ڳ�������ʹ��
#>cfg_hardware_test_enable 1 #Ӳ������ʹ�ܡ�
#============================= Basic Settings =========================
>MACHINETPYE 0 # 0:Cartesian; 1:DELTA ; 2:COREXY
// ==UserScript==
// @name EmuParadise Download Workaround - 1.1.1
// @version 1.1.2
// @description Replaces the download button link with a working one
// @author Eptun
// @match https://www.emuparadise.me/*/*/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// @grant none
// ==/UserScript==