mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
7 lines
149 B
PHP
7 lines
149 B
PHP
<?php
|
|||
function connectUnsafe() {
|
|||
$sock = fsockopen("localhost", 80);
|
|||
fwrite($sock, "GET / HTTP/1.0\r\n\r\n");
|
|||
// Missing fclose($sock)
|
|||
}
|