Skip to content

Instantly share code, notes, and snippets.

@phith0n
phith0n / fpm.py
Last active November 15, 2024 03:50
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