boatcom client floating on my desktop

This commit is contained in:
flash 2025-06-11 17:26:57 +00:00
parent fd7539f594
commit 2b704940e9

10
boatcom.php Normal file
View file

@ -0,0 +1,10 @@
<?php
$key = 'meow';
array_shift($argv);
$payload = chr(1) . implode(' ', $argv);
$sock = fsockopen('192.168.2.200', 9064);
fwrite($sock, hash_hmac('sha256', $payload, $key, true));
fwrite($sock, $payload);
fclose($sock);