lanScan/rdp.php
2024-10-07 01:16:44 +02:00

7 lines
189 B
PHP

<?php
header('Content-Disposition: attachment; filename='.str_replace(':', '_', $_GET['v']).'.rdp');
header('Content-Type: application/rdp');
echo "full address:s:${_GET['v']}\n";
exit();