Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
<?php
$command = sprintf(
'echo -e "%s" | nc -U /var/run/docker.sock',
"GET /info HTTP/1.1\r\nHost: localhost\r\n"
);
echo '<pre>'; var_dump($command); echo '</pre>';
var_dump(exec($command));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment