Skip to content

Instantly share code, notes, and snippets.

View xputerax's full-sized avatar
⚒️
hacking

ad xputerax

⚒️
hacking
View GitHub Profile
@xputerax
xputerax / ipc_fork.php
Created September 18, 2024 23:07
PHP IPC demo using pcntl_fork
<?php
const SHM_KEY = 0x1337;
function printfln($str, ...$args) {
printf($str . "\n", ...$args);
}
function sprintfln($str, $args) {
return sprintf($str . "\n", ...$args);