Skip to content

Instantly share code, notes, and snippets.

View Ranzeplay's full-sized avatar
🥰
Struggling to learn math and computer science

Jeb Feng Ranzeplay

🥰
Struggling to learn math and computer science
View GitHub Profile
@maple3142
maple3142 / CVE-2025-55182.http
Last active December 12, 2025 19:02
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"
@comp500
comp500 / fabricserversidemods.md
Last active September 3, 2024 03:23
Useful Fabric server side mods
@MattPD
MattPD / analysis.draft.md
Last active November 29, 2025 20:13
Program Analysis Resources (WIP draft)
@Galigator
Galigator / java.util.logging.Logger to org.slf4j.Logger
Created April 20, 2016 17:31
A simple function to convert a standard java util Logger into a non standard one (slf4j).
public static org.slf4j.Logger toSlf4j(final Logger logger)
{
return new org.slf4j.Logger()
{
@Override
public String getName()
{
return logger.getName();
}
@raxoft
raxoft / xorshift.asm
Created May 22, 2015 07:36
Fast quality Xor-Shift random number generator for Z80 I have created to weed out the crap RNGs out there. 28 bytes, 122 T cycles, period 2^32-1.
; 8-bit Xor-Shift random number generator.
; Created by Patrik Rak in 2008 and revised in 2011/2012.
; See http://www.worldofspectrum.org/forums/showthread.php?t=23070
org 40000
call rnd ; BASIC driver
ld c,a
ld b,0
ret