This commit is contained in:
2023-04-03 22:43:26 +02:00
commit e93d37cacd
9 changed files with 299 additions and 0 deletions

6
rdp.php Normal file
View File

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