Skip to content

Instantly share code, notes, and snippets.

View gmh5225's full-sized avatar
๐Ÿ™ƒ

gmh5225.eth gmh5225

๐Ÿ™ƒ
View GitHub Profile
@gmh5225
gmh5225 / CVE-2025-55182.http
Created December 5, 2025 09:01 — forked from maple3142/CVE-2025-55182.http
CVE-2025-55182 React Server Components RCE POC
POST / HTTP/1.1
Host: localhost
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36
Next-Action: x
Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryx8jO2oVc6SWP3Sad
Content-Length: 459
------WebKitFormBoundaryx8jO2oVc6SWP3Sad
Content-Disposition: form-data; name="0"
@gmh5225
gmh5225 / bata24_gef_install_uv_archlinux.sh
Created November 30, 2025 10:55 — forked from toratako/bata24_gef_install_uv_archlinux.sh
Install bata24/gef on Arch Linux.
#!/bin/sh -ex
# Original: https://github.com/bata24/gef/blob/dev/install-uv.sh
# License: https://github.com/bata24/gef/blob/dev/LICENSE
# Modified for Arch Linux support.
echo "[+] Configuration"
GEF_REPO_URL="https://raw.githubusercontent.com/bata24/gef/dev/gef.py"
GEF_REPO_BRANCH="dev"
RP_VERSION="v2.1.4"
@gmh5225
gmh5225 / proxmox.md
Created November 1, 2025 11:48 — forked from scyto/proxmox.md
my proxmox cluster

ProxMox Cluster - Soup-to-Nutz

aka what i did to get from nothing to done.

note: these are designed to be primarily a re-install guide for myself (writing things down helps me memorize the knowledge), as such don't take any of this on blind faith - some areas are well tested and the docs are very robust, some items, less so). YMMV

Purpose of Proxmox cluster project

Required Outomces of cluster project

nof1.ai Alpha Arena ๆ็คบ่ฏๅทฅ็จ‹้€†ๅ‘ๅˆ†ๆž

้€†ๅ‘ๅทฅ็จ‹่ฏดๆ˜Ž: ๆœฌๆ–‡ๆกฃๅŸบไบŽ nof1.ai Alpha Arena ็š„ๅ…ฌๅผ€ๆ–‡ๆกฃใ€ไบคๆ˜“่กŒไธบๆจกๅผใ€API ๅ“ๅบ”ๆ ผๅผๅ’Œ็คพๅŒบ่ฎจ่ฎบ,็ณป็ปŸๆ€งๅœฐ้€†ๅ‘ๆŽจๅฏผๅ‡บๅ…ถ System Prompt ๅ’Œ User Prompt ็š„ๅฎŒๆ•ด็ป“ๆž„๏ผŒๆฌข่ฟŽๅ„่ทฏๅคงไฝฌๆˆณๆˆณ่ฏ„่ฎบ๏ผŒไธ€่ตทๆฅ่ฟ›่กŒ่ฟ™ไธชๆœ‰่ถฃ็š„ๅฎž้ชŒใ€‚

GitHub - nof0 Follow @wquguru

็›ฎๅฝ•

@gmh5225
gmh5225 / package.json
Created October 15, 2025 02:48 — forked from niespodd/package.json
Making web3/bitcore-lib work with Angular 6-11 and >=11
{...
"scripts": {
"postinstall": "node patch.js",
...
}
}
@gmh5225
gmh5225 / prompt.txt
Created October 4, 2025 08:42 — forked from s0md3v/prompt.txt
prompt for LLMs based on metacognition and epistemic humility
You are an AI trained on incomplete, biased human data. Your role is to reason with epistemic humility. Rely on justified reasoning, credible information, and labeled assumptions.
**Phase 1: Understand Prompt**
1. Deconstruct the input to extract user intent, constraints, and implicit assumptions.
2. Identify and flag falsehoods, contradictions, or missing details. Ask for clarification before continuing if context is incomplete.
3. Do not affirm or proceed with claims lacking logical or evidential support.
**Phase 2: Formulate Response**
1. Break complex tasks into subproblems.
2. Use prior dialogue to maintain context.
@gmh5225
gmh5225 / drizzle.config.ts
Created September 28, 2025 14:25 — forked from ixahmedxi/drizzle.config.ts
Drizzle ORM + Cloudflare D1 Config
import { execSync } from 'node:child_process'
import fs from 'node:fs'
import path from 'node:path'
import { defineConfig } from 'drizzle-kit'
const dbName = 'orbitkit-lite-start'
/**
* Workaround to make drizzle-kit work with local Cloudflare D1 databases.
@gmh5225
gmh5225 / CVE-2025-6558.html
Created September 17, 2025 07:41 — forked from d4rkc0nd0r/CVE-2025-6558.html
CVE-2025-6558 PoC
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CVE-2025-6558 PoC</title>
</head>
<body>
<canvas id="canvas" width="480" height="640"></canvas>
<script>
function tf_bug() {
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.IO.Compression;
using System.Reflection;
using System.Runtime.Serialization.Formatters.Binary;
namespace hawktraceiis
{
@gmh5225
gmh5225 / Program.cs
Created September 4, 2025 11:33 — forked from susMdT/Program.cs
haha funny jit go brrrr
using System;
using System.Runtime.CompilerServices;
using System.Reflection;
using System.Reflection.Emit;
namespace FunkyJit
{
class Program
{
public static void Nothing() { Console.WriteLine(); }
static void Main(string[] args)