I hereby claim:
- I am markkropf on github.
- I am markkropf (https://keybase.io/markkropf) on keybase.
- I have a public key whose fingerprint is 9BB0 90B8 D4BF 3FB4 C4C8 2C78 B8A0 125B 4E32 B57F
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # CVE-2025-55182 / GHSA-9qr9-h5gf-34mp | |
| # Focused patcher for: | |
| # - react-server-dom-parcel / webpack / turbopack (React 19 RSC) | |
| # - react and react-dom 19.0.0 / 19.1.0 / 19.1.1 / 19.2.0 -> fixed React versions | |
| # - next 15.x / 16.0.x to the minimum patched version | |
| # | |
| # Usage: |
| [ | |
| { | |
| "protocol": "tcp", | |
| "destination": "10.244.0.34", | |
| "ports": "80" | |
| } | |
| ] |
I hereby claim:
To claim this, I am signing this object:
| def sb_SendPacket(r=0,g=0,b=0,c=0b00,packet=0) | |
| packet = (packet << 2) | (c & 0b11) | |
| packet = (packet << 10) | (b) | |
| packet = (packet << 10) | (r) | |
| packet = (packet << 10) | (g) | |
| bits = packet.to_s(2).rjust(32, "0").chars.to_a | |
| bits.insert(22, "_").insert(12, "_").insert(2, "_").insert(1, "_") | |
| bit_str = bits.join("") | |
| c_str = c.to_s(2).rjust(2,"0") | |
| r_str = r.to_s(2).rjust(10,"0") |
| def sb_SendPacket(r=0,g=0,b=0,c=0b00,packet=0) | |
| packet = (packet << 2) | (c & 0b11) | |
| packet = (packet << 10) | (b) | |
| packet = (packet << 10) | (r) | |
| packet = (packet << 10) | (g) | |
| bits = packet.to_s(2).rjust(32, "0").chars.to_a | |
| bits.insert(22, "_").insert(12, "_").insert(2, "_").insert(1, "_") | |
| bit_str = bits.join("") | |
| c_str = c.to_s(2).rjust(2,"0") | |
| r_str = r.to_s(2).rjust(10,"0") |