Skip to content

Instantly share code, notes, and snippets.

View ardhptr21's full-sized avatar
👾
not sure

Ardhi Putra ardhptr21

👾
not sure
View GitHub Profile
@ardhptr21
ardhptr21 / fpm.py
Created July 5, 2025 08:22 — forked from phith0n/fpm.py
Fastcgi PHP-FPM Client && Code Execution
import socket
import random
import argparse
import sys
from io import BytesIO
# Referrer: https://github.com/wuyunfeng/Python-FastCGI-Client
PY2 = True if sys.version_info.major == 2 else False