ok

Mini Shell

Direktori : /proc/thread-self/root/proc/self/root/proc/self/root/usr/local/lsws/admin/misc/
Upload File :
Current File : //proc/thread-self/root/proc/self/root/proc/self/root/usr/local/lsws/admin/misc/htpasswd.php

<?php
$raw = $_SERVER['argv'][1];
$valid_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789/.";
if (CRYPT_MD5 == 1) 
{
    $salt = '$1$';
    for($i = 0; $i < 8; $i++) 
    {
        $salt .= $valid_chars[rand(0,strlen($valid_chars)-1)];
    }
    $salt .= '$';
}
else
{
    $salt = $valid_chars[rand(0,strlen($valid_chars)-1)];
    $salt .= $valid_chars[rand(0,strlen($valid_chars)-1)];
}
$encypt = crypt($raw, $salt);
echo "$encypt\n";
?>

Zerion Mini Shell 1.0