!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_tdfonline/php/3ros/simplesamlphp/modules/core/templates/   drwxr-xr-x
Free 11.87 GB of 61.93 GB (19.16%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     loginuserpass.php (4.46 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
$this
->data['header'] = $this->t('{login:user_pass_header}');

if (
strlen($this->data['username']) > 0) {
    
$this->data['autofocus'] = 'password';
} else {
    
$this->data['autofocus'] = 'username';
}
$this->includeAtTemplateBase('includes/header.php');

?>

<?php
if ($this->data['errorcode'] !== NULL) {
?>
    <div style="border-left: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; background: #f5f5f5">
        <img src="/<?php echo $this->data['baseurlpath']; ?>resources/icons/experience/gtk-dialog-error.48x48.png" class="float-l erroricon" style="margin: 15px " />
        <h2><?php echo $this->t('{login:error_header}'); ?></h2>
        <p><b><?php echo htmlspecialchars($this->t('{errors:title_' $this->data['errorcode'] . '}'$this->data['errorparams'])); ?></b></p>
        <p><?php echo htmlspecialchars($this->t('{errors:descr_' $this->data['errorcode'] . '}'$this->data['errorparams'])); ?></p>
    </div>
<?php
}
?>
    <h2 style="break: both"><?php echo $this->t('{login:user_pass_header}'); ?></h2>

    <p class="logintext"><?php echo $this->t('{login:user_pass_text}'); ?></p>

    <form action="?" method="post" name="f">
    <table>
        <tr>
            <td rowspan="3"><img src="/<?php echo $this->data['baseurlpath']; ?>resources/icons/experience/gtk-dialog-authentication.48x48.png" id="loginicon" alt="" /></td>
            <td style="padding: .3em;"><?php echo $this->t('{login:username}'); ?></td>
            <td>
<?php
if ($this->data['forceUsername']) {
    echo 
'<strong style="font-size: medium">' htmlspecialchars($this->data['username']) . '</strong>';
} else {
    echo 
'<input type="text" id="username" tabindex="1" name="username" value="' htmlspecialchars($this->data['username']) . '" />';
}
?>
            </td>
<?php
if ($this->data['rememberUsernameEnabled']) {
    
$rowspan 1;
} elseif (
array_key_exists('organizations'$this->data)) {
    
$rowspan 3;
} else {
    
$rowspan 2;
}
?>
            <td style="padding: .4em;" rowspan="<?php echo $rowspan?>">
<?php
if ($this->data['rememberUsernameEnabled']) {
    echo 
str_repeat("\t"4);
    echo 
'<input type="checkbox" id="remember_username" tabindex="4" name="remember_username" value="Yes" ';
    echo (
$this->data['rememberUsernameChecked'] ? 'checked="Yes" /> ' '/> ');
    echo 
$this->t('{login:remember_username}');
} else {
    
$text $this->t('{login:login_button}');
    echo 
str_repeat("\t"4);
    echo 
"<input type=\"submit\" tabindex=\"4\" id=\"regularsubmit\" value=\"{$text}\" />";
}
?>
            </td>
        </tr>
        <tr>
            <td style="padding: .3em;"><?php echo $this->t('{login:password}'); ?></td>
            <td><input id="password" type="password" tabindex="2" name="password" /></td>
<?php
// Move submit button to next row if remember checkbox enabled
if ($this->data['rememberUsernameEnabled']) {
    
$rowspan = (array_key_exists('organizations'$this->data) ? 1);
?>
            <td style="padding: .4em;" rowspan="<?php echo $rowspan?>">
                <input type="submit" tabindex="5" id="regularsubmit" value="<?php echo $this->t('{login:login_button}'); ?>" />
            </td>
<?php
}
?>
        </tr>

<?php
if (array_key_exists('organizations'$this->data)) {
?>
        <tr>
            <td style="padding: .3em;"><?php echo $this->t('{login:organization}'); ?></td>
            <td><select name="organization" tabindex="3">
<?php
if (array_key_exists('selectedOrg'$this->data)) {
    
$selectedOrg $this->data['selectedOrg'];
} else {
    
$selectedOrg NULL;
}

foreach (
$this->data['organizations'] as $orgId => $orgDesc) {
    if (
is_array($orgDesc)) {
        
$orgDesc $this->t($orgDesc);
    }

    if (
$orgId === $selectedOrg) {
        
$selected 'selected="selected" ';
    } else {
        
$selected '';
    }

    echo 
'<option ' $selected 'value="' htmlspecialchars($orgId) . '">' htmlspecialchars($orgDesc) . '</option>';
}
?>
            </select></td>
        </tr>
<?php
}
?>
    <tr><td></td><td>
    <input type="submit" tabindex="5" id="mobilesubmit" value="<?php echo $this->t('{login:login_button}'); ?>" />
    </td></tr>
    </table>
<?php
foreach ($this->data['stateparams'] as $name => $value) {
    echo(
'<input type="hidden" name="' htmlspecialchars($name) . '" value="' htmlspecialchars($value) . '" />');
}
?>

    </form>

<?php

if(!empty($this->data['links'])) {
    echo 
'<ul class="links" style="margin-top: 2em">';
    foreach(
$this->data['links'] AS $l) {
        echo 
'<li><a href="' htmlspecialchars($l['href']) . '">' htmlspecialchars($this->t($l['text'])) . '</a></li>';
    }
    echo 
'</ul>';
}




echo(
'<h2 class="logintext">' $this->t('{login:help_header}') . '</h2>');
echo(
'<p class="logintext">' $this->t('{login:help_text}') . '</p>');

$this->includeAtTemplateBase('includes/footer.php');
?>

:: 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.4916 ]--